diff --git a/cms-2016-collision-datasets/code/create-das-json-config-store.sh b/cms-2016-collision-datasets/code/create-das-json-config-store.sh index 29115d5a0..c07a7743e 100755 --- a/cms-2016-collision-datasets/code/create-das-json-config-store.sh +++ b/cms-2016-collision-datasets/code/create-das-json-config-store.sh @@ -14,6 +14,21 @@ while IFS= read -r dataset; do done done < ./inputs/cms-2016-collision-datasets.txt +# get the config file info for the RECO step (the parent of MINI) +minis=$(cat inputs/cms-2016-collision-datasets.txt | grep '/MINI') +for dataset in $minis; do + parent=$(dasgoclient -query "parent dataset=$dataset") + dataset_result_file=$(echo $parent | tr '/' '@') + okay=0 + while [ $okay -lt 1 ]; do + echo "==> DAS config dataset=$parent" + dasgoclient -query "config dataset=$parent" -json > ./inputs/das-json-config-store/"${dataset_result_file}.json" + if [ $? -eq 0 ]; then + okay=1 + fi + done +done + # extract configuration file URLs rm -f temp_urls for file in $(ls -1 inputs/das-json-config-store/*.json); do @@ -26,3 +41,9 @@ cat temp_urls | sort -u > urls # download configuration files mkdir -p ./inputs/config-store cat urls | awk -F/ '{print "curl -o ./inputs/config-store/"$6".configFile -k --key ~/.globus/userkey.nodes.pem --cert ~/.globus/usercert.pem " $0}' | bash + +# remove config files with process HARVESTING +configs_harvesting=$(grep -l HARVESTING inputs/config-store/*) +for c in $configs_harvesting; do + rm $c; +done diff --git a/cms-2016-collision-datasets/code/create-das-json-store.sh b/cms-2016-collision-datasets/code/create-das-json-store.sh index 7f8e1432b..27fd14f39 100755 --- a/cms-2016-collision-datasets/code/create-das-json-store.sh +++ b/cms-2016-collision-datasets/code/create-das-json-store.sh @@ -5,3 +5,11 @@ while IFS= read -r dataset; do dataset_result_file=$(echo $dataset | tr '/' '@') dasgoclient -query "dataset=$dataset" -json > ./inputs/das-json-store/"${dataset_result_file}.json" done < ./inputs/cms-2016-collision-datasets.txt + +# minis=$(cat inputs/cms-2016-collision-datasets.txt | grep '/MINI') +# for dataset in $minis; do +# parent=$(dasgoclient -query "parent dataset=$dataset") +# dataset_result_file=$(echo $parent | tr '/' '@') +# dasgoclient -query "dataset=$parent" -json > ./inputs/das-json-store/"${dataset_result_file}.json" +# done + diff --git a/cms-2016-collision-datasets/code/create_cms_2016_collision_datasets.py b/cms-2016-collision-datasets/code/create_cms_2016_collision_datasets.py index 580fe7f0f..90f5472d2 100644 --- a/cms-2016-collision-datasets/code/create_cms_2016_collision_datasets.py +++ b/cms-2016-collision-datasets/code/create_cms_2016_collision_datasets.py @@ -21,7 +21,7 @@ get_dataset_location, ) -FWYZARD = {} +DATASET_TRIGGER_LIST = {} SELECTION_DESCRIPTIONS = {} @@ -129,17 +129,17 @@ def get_file_checksum(afile): return hex(zlib.adler32(open(afile, "rb").read(), 1) & 0xFFFFFFFF)[2:] -def populate_fwyzard(): - """Populate FWYZARD dictionary (dataset -> trigger list).""" +def populate_dataset_trigger_list(): + """Populate DATASET_TRIGGER_LIST dictionary (dataset -> trigger list).""" for line in open("./inputs/hlt-2016-dataset.txt", "r").readlines(): line = line.strip() dataset, trigger = line.split(",") if trigger.endswith("_v"): trigger = trigger[:-2] - if dataset in FWYZARD.keys(): - FWYZARD[dataset].append(trigger) + if dataset in DATASET_TRIGGER_LIST.keys(): + DATASET_TRIGGER_LIST[dataset].append(trigger) else: - FWYZARD[dataset] = [ + DATASET_TRIGGER_LIST[dataset] = [ trigger, ] @@ -170,7 +170,13 @@ def populate_selection_descriptions(): def get_release_for_processing(dataset_full_name): """Return CMSSW release info for the given dataset for the processing step.""" - return "CMSSW_10_6_26" + p = subprocess.run( + ["dasgoclient", "-query", f"release dataset={dataset_full_name}"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + ) + release = p.stdout.decode().strip() + return release def get_release_for_system_details(dataset_full_name): @@ -187,6 +193,7 @@ def get_global_tag_for_processing(dataset_full_name): m = re.search(pattern, content) if m: processing_global_tag = m.group(1) + processing_global_tag = processing_global_tag.strip() return processing_global_tag @@ -236,12 +243,27 @@ def get_dataset_config_file_name(dataset_full_name): run_period = dataset_full_name.split("/")[2].split("-", 1)[0] version = dataset_full_name.split("/")[2].split("-")[1] config_file = f"ReReco-{run_period}-{dataset}-{version}" + if "/AOD" in dataset_full_name: + config_file = f"recoskim_{run_period}_{dataset}" + if "DoubleMuonLowMass" in dataset_full_name: + config_file = f"ReReco-{run_period}-{dataset}-{version}" return config_file +def get_parent_dataset(dataset_full_name): + """Return the parent dataset for the given dataset.""" + p = subprocess.run( + ["dasgoclient", "-query", f"parent dataset={dataset_full_name}"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + ) + parent = p.stdout.decode().strip() + return parent + + def create_selection_information(dataset, dataset_full_name): """Create box with selection information.""" - if "MINIAOD" in dataset_full_name: + if "/MINIAOD" in dataset_full_name: aodformat = "MINIAOD" else: aodformat = "NANOAOD" @@ -253,31 +275,49 @@ def create_selection_information(dataset, dataset_full_name): # data taking / HLT: out += "

Data taking / HLT" out += '
The collision data were assigned to different RAW datasets using the following HLT configuration.

' - # data processing / RECO: - run_period = re.search(r"(Run[0-9]+.)", dataset_full_name).groups()[0] - afile = get_dataset_config_file_name(dataset_full_name) + # data processing / NANO/PAT/RECO: aodformat = dataset_full_name.split("/")[3] - process = "PAT" - processing_source = "RAW" + step_dataset = dataset_full_name + steps = [] if aodformat == "NANOAOD": - process = "NANO" - processing_source = "MINIAOD" - generator_text = "Configuration file for " + process + " step " + afile - release = get_release_for_processing(dataset_full_name) - global_tag = get_global_tag_for_processing(dataset_full_name) - out += f"

Data processing / {process}" + steps = [ + {"process": "NANO"}, + {"process": "PAT"}, + {"process": "RECO"} + ] + else: + steps = [ + {"process": "PAT"}, + {"process": "RECO"} + ] + + out += "

Data processing " out += ( - "
This primary %s dataset was processed from the %s dataset by the following step: " - % (aodformat, processing_source) + "
This %s dataset was processed from the RAW dataset by the following steps: " + % (aodformat) ) - out += "
Step: %s" % process - out += "
Release: %s" % release - out += "
Global tag: %s" % global_tag - out += '\n
%s' % ( - LINK_INFO.get(afile, ""), - generator_text, - ) - out += "\n

" + out += "
" + + afile = get_dataset_config_file_name(dataset_full_name) + step_dataset = dataset_full_name + for i in range(len(steps)): + generator_text = "Configuration file for " + steps[i]['process'] + " step " + afile + release = get_release_for_processing(step_dataset) + global_tag = get_global_tag_for_processing(step_dataset) + + out += "
Step %s " % steps[i]['process'] + out += "
Release: %s" % release + out += "
Global tag: %s" % global_tag + out += '\n
%s' % ( + LINK_INFO.get(afile, ""), + generator_text, + ) + out += "
Output dataset: %s" % step_dataset + out += "\n

" + if steps[i]['process'] != "RECO": + step_dataset = get_parent_dataset(step_dataset) + afile = get_dataset_config_file_name(step_dataset) + # HLT trigger paths: out += "

HLT trigger paths" out += '
The possible HLT trigger paths in this dataset are:' @@ -293,7 +333,7 @@ def create_selection_information(dataset, dataset_full_name): def get_trigger_paths_for_dataset(dataset): """Return list of trigger paths for given dataset.""" - return FWYZARD.get(dataset, []) + return DATASET_TRIGGER_LIST.get(dataset, []) def get_dataset_index_files(dataset_full_name): @@ -319,6 +359,29 @@ def get_dataset_index_files(dataset_full_name): return files +def get_dataset_semantics_doc(dataset_name, sample_file_path, recid): + """Produce the dataset semantics files and return their data-curation paths for the given dataset.""" + output_dir = f"outputs/docs/NanoAOD/{recid}" + eos_dir = f"/eos/opendata/cms/dataset-semantics/NanoAOD/{recid}" + isExist = os.path.exists(output_dir) + if not isExist: + os.makedirs(output_dir) + + script = "inspectNanoFile.py" + + html_doc_path = f"{output_dir}/{dataset_name}_doc.html" + cmd = f"python3 external-scripts/{script} --doc {html_doc_path} {sample_file_path}" + output = subprocess.getoutput(cmd) + html_eos_path = f"{eos_dir}/{dataset_name}_doc.html" + + json_doc_path = f"{output_dir}/{dataset_name}_doc.json" + cmd = f"python3 external-scripts/{script} --json {json_doc_path} {sample_file_path}" + output = subprocess.getoutput(cmd) + json_eos_path = f"{eos_dir}/{dataset_name}_doc.json" + + return {"url": html_eos_path, "json": json_eos_path} + + def get_doi(dataset_full_name): "Return DOI for the given dataset." return DOI_INFO.get(dataset_full_name, "") @@ -343,6 +406,7 @@ def create_record(recid, run_period, version, dataset, aodformat): % aodformat + "

The list of validated runs, which must be applied to all analyses, either with the full validation or for an analysis requiring only muons, can be found in:

" ) + rec["abstract"]["links"] = [ {"description": "Validated runs, full validation", "recid": "14220"}, {"description": "Validated runs, muons only", "recid": "14221"}, @@ -362,6 +426,13 @@ def create_record(recid, run_period, version, dataset, aodformat): rec["collision_information"]["energy"] = COLLISION_ENERGY rec["collision_information"]["type"] = COLLISION_TYPE + if aodformat == "NANOAOD": + dataset_path = f"/eos/opendata/cms/{run_period}/{dataset}/NANOAOD/{version}" + intermediate_dir = os.listdir(dataset_path) + sample_file_path = f"{dataset_path}/{intermediate_dir[0]}" + sample_file_with_path = f"{sample_file_path}/{os.listdir(sample_file_path)[0]}" + rec["dataset_semantics_files"] = get_dataset_semantics_doc(dataset, sample_file_with_path, recid) + rec["date_created"] = [ YEAR_CREATED, ] @@ -377,7 +448,9 @@ def create_record(recid, run_period, version, dataset, aodformat): rec["doi"] = get_doi(dataset_full_name) - rec["experiment"] = "CMS" + rec["experiment"] = [ + "CMS" + ] rec["files"] = [] @@ -472,15 +545,15 @@ def create_record(recid, run_period, version, dataset, aodformat): rec["usage"]["links"] = [ { "description": "Running CMS analysis code using Docker", - "url": "/docs/cms-guide-docker", + "url": "/docs/cms-guide-docker#nanoaod" if aodformat == "NANOAOD" else "/docs/cms-guide-docker#images", }, { "description": "How to install the CMS Virtual Machine", - "url": "/docs/cms-virtual-machine-2016-2018", + "url": "/docs/cms-virtual-machine-cc7", }, { "description": "Getting started with CMS open data", - "url": "/docs/cms-getting-started-2016-2018", + "url": "/docs/cms-getting-started-miniaod", }, ] @@ -513,7 +586,7 @@ def print_records(records): @click.command() def main(): "Do the job." - populate_fwyzard() + populate_dataset_trigger_list() populate_doiinfo() populate_containerimages_cache() populate_selection_descriptions() diff --git a/cms-2016-collision-datasets/code/create_reco_config_file_records.py b/cms-2016-collision-datasets/code/create_reco_config_file_records.py index d3483d206..f666bb587 100644 --- a/cms-2016-collision-datasets/code/create_reco_config_file_records.py +++ b/cms-2016-collision-datasets/code/create_reco_config_file_records.py @@ -23,6 +23,8 @@ RECID_START = 30400 +RECID_MAX = 30500 # when this record ID number is reached, continue from the "next" number +RECID_NEXT = 30566 # next free record ID number YEAR_CREATED = "2016" YEAR_PUBLISHED = "2024" COLLISION_ENERGY = "13Tev" @@ -126,12 +128,12 @@ def main(): # Skip non-RECO files afile_python_filename = get_python_filename(afile) - if not afile_python_filename.startswith("ReReco"): + if not afile_python_filename.startswith("ReReco") and not afile_python_filename.startswith("recoskim"): continue - + if afile_python_filename in files_seen: continue - + files_seen.append(afile_python_filename) # Create nice reco_*.py files for copying them over to EOSPUBLIC @@ -170,7 +172,9 @@ def main(): rec["distribution"]["number_files"] = 1 rec["distribution"]["size"] = get_size(afile) - rec["experiment"] = "CMS" + rec["experiment"] = [ + "CMS" + ] rec["files"] = [ { @@ -207,6 +211,10 @@ def main(): ) recid += 1 + # jump over some record ID range which were already preselected for collision data + if recid == RECID_MAX: + recid = RECID_NEXT + fdesc.write("}\n") fdesc.close() diff --git a/cms-2016-collision-datasets/external-scripts/inspectNanoFile.py b/cms-2016-collision-datasets/external-scripts/inspectNanoFile.py new file mode 100644 index 000000000..3a57e5ff4 --- /dev/null +++ b/cms-2016-collision-datasets/external-scripts/inspectNanoFile.py @@ -0,0 +1,471 @@ +#!/usr/bin/env python3 +# code from https://github.com/cms-sw/cmssw/blob/master/PhysicsTools/NanoAOD/test/inspectNanoFile.py + +from builtins import range +import sys, os.path, json +from collections import defaultdict +import ROOT +ROOT.PyConfig.IgnoreCommandLineOptions = True +ROOT.gROOT.SetBatch(True) + + +class FileData: + def __init__(self,data): + self._json = data + for k,v in data.items(): + setattr(self,k,v) + self.Events = self.trees["Events"] + self.nevents = self.Events["entries"] + self.Runs = self.trees["Runs"] + self.nruns = self.Runs["entries"] + self.LuminosityBlocks = self.trees["LuminosityBlocks"] + self.nluminosityblocks = self.LuminosityBlocks["entries"] + +class Branch: + def __init__(self, tree, branch): + self.tree = tree + self.branch = branch + self.name = branch.GetName() + self.doc = branch.GetTitle() + self.tot = branch.GetZipBytes()/1024.0 + self.entries = None; + self.single = True + self.kind = "Unknown" + if branch.GetNleaves() != 1: + sys.stderr.write("Cannot parse branch '%s' in tree %s (%d leaves)\n"%(branch.GetName(), tree.GetName(), branch.GetNleaves())) + return + self.leaf = branch.FindLeaf(branch.GetName()) + if not self.leaf: + sys.stderr.write("Cannot parse branch '%s' in tree %s (no leaf)\n"%(branch.GetName(), tree.GetName())) + return + self.kind = self.leaf.GetTypeName() + if "Idx" in self.name: + self.kind+="(index to %s)"%((self.name[self.name.find("_")+1:self.name.find("Idx")]).title()) + if self.leaf.GetLen() == 0 and self.leaf.GetLeafCount() != None: + self.single = False + self.counter = self.leaf.GetLeafCount().GetName() + def toJSON(self): + return ( self.name, dict(name = self.name, doc = self.doc, tot=self.tot, entries=self.entries, single=self.single, kind=self.kind, counter = getattr(self,'counter','')) ) + +class BranchGroup: + def __init__(self, name): + self.name = name + self.tot = 0 + self.entries = None; + self.subs = [] + self.kind = None + self.doc = '' + def append(self, sub): + self.subs.append(sub) + self.tot += sub.tot + if not self.doc: self.doc = sub.doc + def getKind(self): + if self.kind: return self.kind + if len(self.subs) == 1: + if self.subs[0].single: self.kind = "Variable" + else: + self.kind = "Vector" + self.counter = self.subs[0].counter + else: + allsingles, commonCounter = True, True + counter = None + for s in self.subs: + if not s.single: + allsingles = False + if counter == None: counter = s.counter + elif counter != s.counter: + commonCounter = False + if allsingles: + self.kind = "Singleton" + elif commonCounter: + self.kind = "Collection" + self.counter = counter + else: + self.kind = "ItsComplicated" + return self.kind + def toJSON(self): + return (self.name, dict(name = self.name, doc = self.doc, kind = self.kind, tot = self.tot, entries = self.entries, subs = [s.name for s in self.subs])) + + +def inspectRootFile(infile): + if not os.path.isfile(infile): raise RuntimeError + filesize = os.path.getsize(infile)/1024.0 + tfile = ROOT.TFile.Open(infile) + trees = {} + for treeName in "Events", "Runs", "LuminosityBlocks": + toplevelDoc={} + tree = tfile.Get(treeName) + entries = tree.GetEntries() + trees[treeName] = tree + branchList = tree.GetListOfBranches() + allbranches = [ Branch(tree, br) for br in branchList ] + branchmap = dict((b.name,b) for b in allbranches) + branchgroups = {} + # make list of counters and countees + counters = defaultdict(list) + for b in allbranches: + if not b.single: + counters[b.counter].append(b.name) + else: + b.entries = entries + c1 = ROOT.TCanvas("c1","c1") + for counter,countees in counters.items(): + n = tree.Draw(counter+">>htemp") + if n != 0: + htemp = ROOT.gROOT.FindObject("htemp") + n = htemp.GetEntries() * htemp.GetMean() + htemp.Delete() + branchmap[counter].entries = entries + for c in countees: + br = branchmap[c] + br.entries = n + # now we start to create branch groups + for b in allbranches: + if b.name in counters: + if len(b.doc) > 0: + toplevelDoc[b.name[1:]]=b.doc + continue # skip counters + if "_" in b.name: + head, tail = b.name.split("_",1) + else: + head = b.name + toplevelDoc[b.name]=b.doc + if head not in branchgroups: + branchgroups[head] = BranchGroup(head) + branchgroups[head].append(b) + for bg in branchgroups.values(): + if bg.name in toplevelDoc: + bg.doc = toplevelDoc[bg.name] + kind = bg.getKind() + bg.entries = bg.subs[0].entries + if kind == "Vector" or kind == "Collection": + bg.append(branchmap[bg.counter]) + elif kind == "ItsComplicated": + for counter in set(s.counter for s in bg.subs if not s.single): + bg.append(branchmap[counter]) + allsize_c = sum(b.tot for b in allbranches) + allsize = sum(b.tot for b in branchgroups.values()) + if abs(allsize_c - allsize) > 1e-6*(allsize_c+allsize): + sys.stderr.write("Total size mismatch for tree %s: %10.4f kb vs %10.4f kb\n" % (treeName, allsize, allsize_c)) + trees[treeName] = dict( + entries = entries, + allsize = allsize, + branches = dict(b.toJSON() for b in allbranches), + branchgroups = dict(bg.toJSON() for bg in branchgroups.values()), + ) + c1.Close() + tfile.Close() + return dict(filename = os.path.basename(infile), filesize = filesize, trees = trees) + +def makeSurvey(treeName, treeData): + allsize = treeData['allsize'] + entries = treeData['entries'] + survey = list(treeData['branchgroups'].values()) + survey.sort(key = lambda bg : - bg['tot']) + scriptdata = [] + runningtotal = 0 + unit = treeName[:-1].lower() + for s in survey: + if s['tot'] < 0.01*allsize: + tag = "Others
Size: %.0f b/%s (%.1f%%)" % ((allsize - runningtotal)/entries*1024, unit, (allsize-runningtotal)/allsize*100) + scriptdata.append( "{ 'label':'others', 'tag':'top', 'size':%s, 'tip':'%s' }" % ((allsize-runningtotal)/entries, tag) ) + break + else: + tag = "%s
" % (s['name'],s['name']); + tag += "Size: %.0f b/%s (%.1f%%)" % (s['tot']/entries*1024, unit, s['tot']/allsize*100); + if (s['kind'] in ("Vector","Collection")) and s['entries'] > 0: + tag += "
Items/%s: %.1f, %.0f b/item" %(unit, float(s['entries'])/entries, s['tot']/s['entries']*1024); + scriptdata.append( "{ 'label':'%s', 'tag':'%s', 'size':%s, 'tip':'%s' }" % ( s['name'], s['name'], s['tot']/entries, tag) ) + runningtotal += s['tot'] + return (survey, "\n,\t".join(scriptdata)) + +def writeSizeReport(fileData, trees, stream): + filename = fileData.filename + filesize = fileData.filesize + events = fileData.nevents + surveys = {} + for treename, treeData in trees.items(): + surveys[treename] = makeSurvey(treename, treeData) + title = "%s (%.3f Mb, %d events, %.2f kb/event)" % (filename, filesize/1024.0, events, filesize/events) + stream.write(""" + + + {title} + + + + + + + + +

{title}

+ """.format(title=title)) + stream.write("\n".join(""" +

{treename} data

+ [No canvas support] + """.format(treename=treename) for treename in surveys.keys())) + stream.write(' + """.format( + "\n".join(""" + values = []; + labels = []; + keys = []; + tips = []; + for (var i = 0; i < data_{treename}.length; i++) {{ + values.push( data_{treename}[i].size ); + labels.push( data_{treename}[i].label ); + keys.push( data_{treename}[i].label ); + tips.push( data_{treename}[i].tip ); + }} + var chart_{treename} = new RGraph.Pie("{treename}Canvas", values) + .Set('exploded', 7) + .Set('tooltips', tips) + .Set('tooltips.event', 'onmousemove') + .Set('key', labels) + .Set('key.position.graph.boxed', false) + .Draw(); + """.format(treename=treename, scriptdata=scriptdata) + for treename, (_, scriptdata) in surveys.items()))) + + if len(trees) > 1: + stream.write("

Collections summary

\n") + stream.write(" \n") + stream.write("\n"); + runningtotal = 0 + for treename, (survey, _) in surveys.items(): + treetotal = trees[treename]['allsize'] + treerunningtotal = 0 + for s in survey: + stream.write("" % (s['doc'],s['name'],s['name'],s['kind'].lower(),len(s['subs']))) + stream.write("" % (s['entries']/events, s['tot']/events, s['tot']/s['entries']*1024 if s['entries'] else 0)) + stream.write("" % (s['tot']/treetotal*200,10)) + stream.write("" % ( s['tot']/treetotal * 100.0)) + stream.write("" % ( (runningtotal+s['tot'])/treetotal * 100.0)) + stream.write("" % ( (treetotal-runningtotal)/treetotal * 100.0)) + stream.write("\n") + treerunningtotal += s['tot'] + runningtotal += treerunningtotal + + # all known data + stream.write("" % treename) + stream.write("" % (treetotal/events)) + stream.write("" % (treetotal/filesize*100.0)) + stream.write("\n") + + if treename == "Events": + # non-event + stream.write("") + stream.write("" % ( (filesize-treetotal)/events)) + stream.write("" % ( (filesize-treetotal)/filesize * 100, 10 )) + stream.write("" % ( (filesize-treetotal)/filesize * 100.0 )) + stream.write("\n") + + if len(surveys) > 1: + # other, unknown overhead + stream.write("") + stream.write("" % ( (filesize-runningtotal)/events)) + stream.write("" % ( (filesize-runningtotal)/filesize * 100, 10 )) + stream.write("" % ( (filesize-runningtotal)/filesize * 100.0 )) + stream.write("\n") + + # all file + stream.write("") + stream.write("" % (filesize/events)) + stream.write("\n") + + stream.write(""" +
" + "".join([ "collection", "kind", "vars", "items/evt", "kb/evt", "b/item", "plot", "%" ]) + "cumulative %
%s%s%d%.2f%.3f%.1f%.1f%%%.1f%%%.1f%%
All %s data   %.2f " % ( treetotal/filesize*100.0)) + stream.write("%.1f%%a
Non per-event data or overhead   %.2f %.1f%%a
Overhead   %.2f %.1f%%a
File size   %.2f   
+ Note: size percentages of individual event products are relative to the total size of Event data only (or equivalent for non-Events trees).
+ Percentages with a are instead relative to the full file size. + """) + for treename, treeData in trees.items(): + stream.write(""" +

%s detail

+ """ % treename) + for s in sorted(surveys[treename][0], key = lambda s : s['name']): + stream.write("

%s (%.1f items/evt, %.3f kb/evt) [back to top]

" % (s['name'], s['name'], s['name'], s['entries']/events, s['tot']/events)) + stream.write("\n") + stream.write("\n") + subs = [ treeData['branches'][b] for b in s['subs'] ] + for b in sorted(subs, key = lambda s : - s['tot']): + stream.write("" % (b['doc'],b['name'], b['kind'], b['tot']/events*1024, b['tot']/s['entries']*1024 if s['entries'] else 0)) + stream.write("" % ( b['tot']/s['tot']*200, 10 )) + stream.write("" % (b['tot']/s['tot'] * 100.0)) + stream.write("\n") + stream.write("
" + "".join( [ "branch", "kind", "b/event", "b/item", "plot", "%" ]) + "
%s%s%.1f%.1f%.1f%%
\n") + stream.write(""" + + """) + +def writeDocReport(fileName, trees, stream): + stream.write( """ + + + Documentation for {filename} + + + + """.format(filename=fileName)) + for treename, treeData in trees.items(): + stream.write(""" +

{treename} Content

+ + """.format(treename=treename)) + stream.write( "\n" ) + groups = list(treeData['branchgroups'].values()) + groups.sort(key = lambda s : s['name']) + for s in groups: + stream.write( "\n" % (s['name'],s['name'],s['doc']) ) + stream.write("
CollectionDescription
%s%s
\n\n

{treename} detail

\n".format(treename=treename)) + for s in groups: + stream.write( "

%s [back to top]

\n" % (s['name'], s['name'], s['name']) ) + stream.write( "\n" ) + stream.write( "\n" ) + subs = [ treeData['branches'][b] for b in s['subs'] ] + for b in sorted(subs, key = lambda s : s['name']): + stream.write( "" % (b['name'], b['kind'], b['doc']) ) + stream.write( "\n" ) + stream.write( "
Object propertyTypeDescription
%s%s%s
\n" ) + stream.write( """ + + """ ) + +def writeMarkdownSizeReport(fileData, trees, stream): + filename = fileData.filename + filesize = fileData.filesize + events = fileData.nevents + surveys = {} + for treename, treeData in trees.items(): + surveys[treename] = makeSurvey(treename, treeData)[0] + + stream.write("**%s (%.3f Mb, %d events, %.2f kb/event)**\n" % (filename, filesize/1024.0, events, filesize/events)) + stream.write("\n# Event data\n" if len(trees) == 1 else "\n# Collection data\n") + stream.write("| collection | kind | vars | items/evt | kb/evt | b/item | plot | % | ascending cumulative % | descending cumulative % |\n") + stream.write("| - | - | - | - | - | - | - | - | - | - |\n") + runningtotal = 0 + for treename, survey in surveys.items(): + treetotal = trees[treename]['allsize'] + treerunningtotal = 0 + for s in survey: + stream.write("| [**%s**](#%s '%s') | %s | %d" % (s['name'], s['name'].lower(), s['doc'].replace('|', '\|').replace('\'', '\"'), s['kind'].lower(), len(s['subs']))) + stream.write("| %.2f|%.3f|%.1f" % (s['entries']/events, s['tot']/events, s['tot'] / s['entries'] * 1024 if s['entries'] else 0)) + stream.write("| " % (s['tot'] / treetotal * 200, 10)) + stream.write("| %.1f%%" % (s['tot'] / treetotal * 100.0)) + stream.write("| %.1f%%" % ((runningtotal+s['tot'])/treetotal * 100.0)) + stream.write("| %.1f%% |\n" % ((treetotal-runningtotal)/treetotal * 100.0)) + runningtotal += s['tot'] + + # all known data + stream.write("**All %s data**" % treename) + stream.write("| | | | **%.2f**" % (treetotal/events)) + stream.write("| | " % (treetotal / filesize * 100.0, 10)) + stream.write("| %.1f%%a | | |\n" % (treetotal/filesize * 100.0)) + + if treename == "Events": + # non-event + stream.write("**Non per-event data or overhead**") + stream.write("| | | | %.2f" % ((filesize-treetotal)/events)) + stream.write("| | " % ((filesize - treetotal) / filesize * 100, 10)) + stream.write("| %.1f%%a | | |\n" % ((filesize-treetotal)/filesize * 100.0)) + + if len(surveys) > 1: + # other, unknown overhead + stream.write("**Overhead**") + stream.write("| | | | %.2f" % ((filesize-runningtotal)/events)) + stream.write("| | " % ((filesize - runningtotal) / filesize * 100, 10)) + stream.write("| %.1f%%a | | |\n" % ((filesize-runningtotal)/filesize * 100.0)) + + # all file + stream.write("**File size**") + stream.write("| | | | **%.2f**" % (filesize/events)) + stream.write("| | | | | |\n\n") + + stream.write("Note: size percentages of individual event products are relative to the total size of Event data only (or equivalent for non-Events trees).\\\n") + stream.write("Percentages with a are instead relative to the full file size.\n\n") + + for treename, survey in surveys.items(): + stream.write("# %s detail\n" % treename) + for s in sorted(survey, key=lambda s: s['name']): + stream.write("## %s (%.1f items/evt, %.3f kb/evt) [[back to top]](#event-data)\n" % (s['name'].lower(), s['name'], s['entries'] / events, s['tot'] / events)) + stream.write("| branch | kind | b/event | b/item | plot | % |\n") + stream.write("| - | - | - | - | - | - |\n") + subs = [trees[treename]['branches'][b] for b in s['subs']] + for b in sorted(subs, key = lambda s: - s['tot']): + stream.write("| %s | %s | %.1f | %.1f" % (b['doc'].replace('|', '\|').replace('\'', '\"'), b['name'], b['kind'], b['tot'] / events * 1024, b['tot'] / s['entries'] * 1024 if s['entries'] else 0)) + stream.write("| " % (b['tot'] / s['tot'] * 200, 10)) + stream.write("| %.1f%% |\n" % (b['tot'] / s['tot'] * 100.0)) + stream.write("\n") + +def writeMarkdownDocReport(trees, stream): + for treename, treeData in trees.items(): + stream.write("# %s Content\n" % treename) + stream.write("\n| Collection | Description |\n") + stream.write("| - | - |\n") + groups = list(treeData['branchgroups'].values()) + groups.sort(key = lambda s : s['name']) + for s in groups: + stream.write("| [**%s**](#%s) | %s |\n" % (s['name'], s['name'].lower(), s['doc'])) + stream.write("\n# %s detail\n" % treename) + for s in groups: + stream.write("\n## %s [[back to top]](#content)\n" % (s['name'].lower(), s['name'])) + stream.write("| Object property | Type | Description |\n") + stream.write("| - | - | - |\n") + subs = [treeData['branches'][b] for b in s['subs']] + for b in sorted(subs, key = lambda s : s['name']): + stream.write("| **%s** | %s| %s |\n" % (b['name'], b['kind'], b['doc'])) + stream.write("\n") + +def _maybeOpen(filename): + return open(filename, 'w') if filename != "-" else sys.stdout + +if __name__ == '__main__': + from argparse import ArgumentParser + parser = ArgumentParser() + parser.add_argument("-j", "--json", dest="json", type=str, default=None, help="Write out json file") + parser.add_argument("-d", "--doc", dest="doc", type=str, default=None, help="Write out html doc") + parser.add_argument("-s", "--size", dest="size", type=str, default=None, help="Write out html size report") + parser.add_argument("--docmd", dest="docmd", type=str, default=None, help="Write out markdown doc") + parser.add_argument("--sizemd", dest="sizemd", type=str, default=None, help="Write out markdown size report") + parser.add_argument("inputFile", type=str) + options = parser.parse_args() + + if options.inputFile.endswith(".root"): + filedata = FileData(inspectRootFile(options.inputFile)) + elif options.inputFile.endswith(".json"): + filedata = FileData(json.load(open(options.inputFile,'r'))) + else: raise RuntimeError("Input file %s is not a root or json file" % options.inputFile) + + if options.json: + json.dump(filedata._json, _maybeOpen(options.json), indent=4) + sys.stderr.write("JSON output saved to %s\n" % options.json) + + treedata = {} # trees for (HTML or markdown) doc report + if len(filedata.Runs["branches"]) > 1: # default: run number + treedata["Runs"] = filedata.Runs + if len(filedata.LuminosityBlocks["branches"]) > 2: # default: run number, lumiblock + treedata["LuminosityBlocks"] = filedata.LuminosityBlocks + treedata["Events"] = filedata.Events + + if options.doc: + writeDocReport(filedata.filename, treedata, _maybeOpen(options.doc)) + sys.stderr.write("HTML documentation saved to %s\n" % options.doc) + if options.size: + writeSizeReport(filedata, treedata, _maybeOpen(options.size)) + sys.stderr.write("HTML size report saved to %s\n" % options.size) + if options.docmd: + writeMarkdownDocReport(treedata, _maybeOpen(options.docmd)) + sys.stderr.write("Markdown documentation saved to %s\n" % options.docmd) + if options.sizemd: + writeMarkdownSizeReport(filedata, treedata, _maybeOpen(options.sizemd)) + sys.stderr.write("Markdown size report saved to %s\n" % options.sizemd) \ No newline at end of file diff --git a/cms-2016-collision-datasets/inputs/CMSDatasetDescription_Run2016.csv b/cms-2016-collision-datasets/inputs/CMSDatasetDescription_Run2016.csv index e69de29bb..c6a389ea8 100644 --- a/cms-2016-collision-datasets/inputs/CMSDatasetDescription_Run2016.csv +++ b/cms-2016-collision-datasets/inputs/CMSDatasetDescription_Run2016.csv @@ -0,0 +1,66 @@ +/BTagCSV/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two jets, tagged as b-quark jets with combined secondary vertex. +/BTagMu/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of a muon from the b-quark decay, and one or more jets. +/Charmonium/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two muons, or a muon and a track with some requirements in the invariant mass for selecting low-mass resonances. +/DisplacedJet/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of one or more displaced jets, or a displaced jet and/or high scalar sum of the jet transverse momenta (HT). +/DoubleEG/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of different combinations of energetic photons, electrons and/or jets. +/DoubleMuon/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two energetic muons in the event. +/DoubleMuonLowMass/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two muons with low invariant mass. +/HTMHT/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of a combination of a high scalar sum of the jet transverse momenta (HT), one or more energetic jets, or high missing transverse energy. +/JetHT/Run2016G-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of a high scalar sum of the jet transverse momenta (HT), or at least one or two energetic jets. +/MET/Run2016G-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of high missing transverse energy. +/MuOnia/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two muons in the event requiring only very low energy and some requirements in the invariant mass for selecting low-mass resonances. +/MuonEG/Run2016G-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of one energetic muon and electron or photon. +/SingleElectron/Run2016G-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least one high-energy electron, or at least one high-energy electron and one or more jets or tau. +/SingleMuon/Run2016G-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least one energetic muon, or at least one muon and one or more jets, tau or high missing transverse momentum. +/SinglePhoton/Run2016G-UL2016_MiniAODv2-v3/MINIAOD:Events stored in this primary dataset were selected because of the presence of one energetic photon, or one photon and high missing transverse momentum. +/Tau/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least one tau, or one tau and muon or high missing transverse momentum. +/ZeroBias/Run2016G-UL2016_MiniAODv2-v1/MINIAOD:This primary dataset is an unbiased sample of all collisions. +/BTagCSV/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two jets, tagged as b-quark jets with combined secondary vertex. +/BTagMu/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of a muon from the b-quark decay, and one or more jets. +/Charmonium/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two muons, or a muon and a track with some requirements in the invariant mass for selecting low-mass resonances. +/DisplacedJet/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of one or more displaced jets, or a displaced jet and/or high scalar sum of the jet transverse momenta (HT). +/DoubleEG/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of different combinations of energetic photons, electrons and/or jets. +/DoubleMuon/Run2016G-UL2016_MiniAODv2_NanoAODv9-v2/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two energetic muons in the event. +/DoubleMuonLowMass/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two muons with low invariant mass. +/HTMHT/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of a combination of a high scalar sum of the jet transverse momenta (HT), one or more energetic jets, or high missing transverse energy. +/JetHT/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of a high scalar sum of the jet transverse momenta (HT), or at least one or two energetic jets. +/MET/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of high missing transverse energy. +/MuOnia/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two muons in the event requiring only very low energy and some requirements in the invariant mass for selecting low-mass resonances. +/MuonEG/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of one energetic muon and electron or photon. +/SingleElectron/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least one high-energy electron, or at least one high-energy electron and one or more jets or tau. +/SingleMuon/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least one energetic muon, or at least one muon and one or more jets, tau or high missing transverse momentum. +/SinglePhoton/Run2016G-UL2016_MiniAODv2_NanoAODv9-v2/NANOAOD:Events stored in this primary dataset were selected because of the presence of one energetic photon, or one photon and high missing transverse momentum. +/Tau/Run2016G-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least one tau, or one tau and muon or high missing transverse momentum. +/BTagCSV/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two jets, tagged as b-quark jets with combined secondary vertex. +/BTagMu/Run2016H-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of a muon from the b-quark decay, and one or more jets. +/Charmonium/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two muons, or a muon and a track with some requirements in the invariant mass for selecting low-mass resonances. +/DisplacedJet/Run2016H-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of one or more displaced jets, or a displaced jet and/or high scalar sum of the jet transverse momenta (HT). +/DoubleEG/Run2016H-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of different combinations of energetic photons, electrons and/or jets. +/DoubleMuon/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two energetic muons in the event. +/DoubleMuonLowMass/Run2016H-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two muons with low invariant mass. +/HTMHT/Run2016H-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of a combination of a high scalar sum of the jet transverse momenta (HT), one or more energetic jets, or high missing transverse energy. +/JetHT/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of a high scalar sum of the jet transverse momenta (HT), or at least one or two energetic jets. +/MET/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of high missing transverse energy. +/MuOnia/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least two muons in the event requiring only very low energy and some requirements in the invariant mass for selecting low-mass resonances. +/MuonEG/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of one energetic muon and electron or photon. +/SingleElectron/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least one high-energy electron, or at least one high-energy electron and one or more jets or tau. +/SingleMuon/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least one energetic muon, or at least one muon and one or more jets, tau or high missing transverse momentum. +/SinglePhoton/Run2016H-UL2016_MiniAODv2-v2/MINIAOD:Events stored in this primary dataset were selected because of the presence of one energetic photon, or one photon and high missing transverse momentum. +/Tau/Run2016H-UL2016_MiniAODv2-v1/MINIAOD:Events stored in this primary dataset were selected because of the presence of at least one tau, or one tau and muon or high missing transverse momentum. +/ZeroBias/Run2016H-UL2016_MiniAODv2-v1/MINIAOD:This primary dataset is an unbiased sample of all collisions. +/BTagCSV/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two jets, tagged as b-quark jets with combined secondary vertex. +/BTagMu/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of a muon from the b-quark decay, and one or more jets. +/Charmonium/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two muons, or a muon and a track with some requirements in the invariant mass for selecting low-mass resonances. +/DisplacedJet/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of one or more displaced jets, or a displaced jet and/or high scalar sum of the jet transverse momenta (HT). +/DoubleEG/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of different combinations of energetic photons, electrons and/or jets. +/DoubleMuon/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two energetic muons in the event. +/DoubleMuonLowMass/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two muons with low invariant mass. +/HTMHT/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of a combination of a high scalar sum of the jet transverse momenta (HT), one or more energetic jets, or high missing transverse energy. +/JetHT/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of a high scalar sum of the jet transverse momenta (HT), or at least one or two energetic jets. +/MET/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of high missing transverse energy. +/MuOnia/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least two muons in the event requiring only very low energy and some requirements in the invariant mass for selecting low-mass resonances. +/MuonEG/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of one energetic muon and electron or photon. +/SingleElectron/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least one high-energy electron, or at least one high-energy electron and one or more jets or tau. +/SingleMuon/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least one energetic muon, or at least one muon and one or more jets, tau or high missing transverse momentum. +/SinglePhoton/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of one energetic photon, or one photon and high missing transverse momentum. +/Tau/Run2016H-UL2016_MiniAODv2_NanoAODv9-v1/NANOAOD:Events stored in this primary dataset were selected because of the presence of at least one tau, or one tau and muon or high missing transverse momentum. diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..e0172f186 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..7f4d35f14 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..bceab85b2 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuonLowMass-21Feb2020_UL2016.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuonLowMass-21Feb2020_UL2016.py new file mode 100644 index 000000000..6eb6af78c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuonLowMass-21Feb2020_UL2016.py @@ -0,0 +1,220 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v27 --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --datatier AOD,MINIAOD --era Run2_2016 --eventcontent AOD,MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-DoubleMuonLowMass-21Feb2020_UL2016-00001.root --nThreads 8 --no_exec --python_filename ReReco-Run2016G-DoubleMuonLowMass-21Feb2020_UL2016-00001_0_cfg.py --scenario pp --step RAW2DIGI,L1Reco,RECO,EI,PAT --runUnscheduled --data +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('file:ReReco-Run2016G-DoubleMuonLowMass-21Feb2020_UL2016-00001.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-DoubleMuonLowMass-21Feb2020_UL2016-00001_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.AODoutput_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..3696b9c4a --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MET-UL2016_MiniAODv2.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MET-UL2016_MiniAODv2.py index 088804eca..139c72aeb 100644 --- a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MET-UL2016_MiniAODv2.py +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MET-UL2016_MiniAODv2.py @@ -2,7 +2,7 @@ # using: # Revision: 1.19 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v -# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-MET-UL2016_MiniAODv2-00002.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-MET-UL2016_MiniAODv2-00002_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-MET-UL2016_MiniAODv2-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-MET-UL2016_MiniAODv2-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 import FWCore.ParameterSet.Config as cms from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 @@ -55,7 +55,7 @@ dropMetaData = cms.untracked.string('ALL'), eventAutoFlushCompressedSize = cms.untracked.int32(-900), fastCloning = cms.untracked.bool(False), - fileName = cms.untracked.string('file:ReReco-Run2016G-MET-UL2016_MiniAODv2-00002.root'), + fileName = cms.untracked.string('file:ReReco-Run2016G-MET-UL2016_MiniAODv2-00001.root'), outputCommands = process.MINIAODEventContent.outputCommands, overrideBranchesSplitLevel = cms.untracked.VPSet( cms.untracked.PSet( diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..54a4b4514 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MuonEG-UL2016_MiniAODv2.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MuonEG-UL2016_MiniAODv2.py index fe1e114dc..59d67826d 100644 --- a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MuonEG-UL2016_MiniAODv2.py +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-MuonEG-UL2016_MiniAODv2.py @@ -2,7 +2,7 @@ # using: # Revision: 1.19 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v -# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-MuonEG-UL2016_MiniAODv2-00002.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-MuonEG-UL2016_MiniAODv2-00002_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-MuonEG-UL2016_MiniAODv2-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-MuonEG-UL2016_MiniAODv2-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 import FWCore.ParameterSet.Config as cms from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 @@ -55,7 +55,7 @@ dropMetaData = cms.untracked.string('ALL'), eventAutoFlushCompressedSize = cms.untracked.int32(-900), fastCloning = cms.untracked.bool(False), - fileName = cms.untracked.string('file:ReReco-Run2016G-MuonEG-UL2016_MiniAODv2-00002.root'), + fileName = cms.untracked.string('file:ReReco-Run2016G-MuonEG-UL2016_MiniAODv2-00001.root'), outputCommands = process.MINIAODEventContent.outputCommands, overrideBranchesSplitLevel = cms.untracked.VPSet( cms.untracked.PSet( diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..f545cd614 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2.py index 24a8017c7..27deb7c7f 100644 --- a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2.py +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2.py @@ -2,7 +2,7 @@ # using: # Revision: 1.19 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v -# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2-00002.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2-00002_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 import FWCore.ParameterSet.Config as cms from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 @@ -55,7 +55,7 @@ dropMetaData = cms.untracked.string('ALL'), eventAutoFlushCompressedSize = cms.untracked.int32(-900), fastCloning = cms.untracked.bool(False), - fileName = cms.untracked.string('file:ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2-00002.root'), + fileName = cms.untracked.string('file:ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2-00001.root'), outputCommands = process.MINIAODEventContent.outputCommands, overrideBranchesSplitLevel = cms.untracked.VPSet( cms.untracked.PSet( diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..e34336f10 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..94b406d7e --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..63e96d0ee --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..db70c68c4 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..9a3d0c91b --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuonLowMass-21Feb2020_UL2016.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuonLowMass-21Feb2020_UL2016.py new file mode 100644 index 000000000..43aaceb1c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuonLowMass-21Feb2020_UL2016.py @@ -0,0 +1,220 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v27 --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --datatier AOD,MINIAOD --era Run2_2016 --eventcontent AOD,MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-DoubleMuonLowMass-21Feb2020_UL2016-00001.root --nThreads 8 --no_exec --python_filename ReReco-Run2016H-DoubleMuonLowMass-21Feb2020_UL2016-00001_0_cfg.py --scenario pp --step RAW2DIGI,L1Reco,RECO,EI,PAT --runUnscheduled --data +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('file:ReReco-Run2016H-DoubleMuonLowMass-21Feb2020_UL2016-00001.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-DoubleMuonLowMass-21Feb2020_UL2016-00001_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.AODoutput_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..8a6f82237 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MET-UL2016_MiniAODv2.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MET-UL2016_MiniAODv2.py index 198b39a53..688a9b32d 100644 --- a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MET-UL2016_MiniAODv2.py +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MET-UL2016_MiniAODv2.py @@ -2,7 +2,7 @@ # using: # Revision: 1.19 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v -# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-MET-UL2016_MiniAODv2-00002.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-MET-UL2016_MiniAODv2-00002_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-MET-UL2016_MiniAODv2-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-MET-UL2016_MiniAODv2-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 import FWCore.ParameterSet.Config as cms from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 @@ -55,7 +55,7 @@ dropMetaData = cms.untracked.string('ALL'), eventAutoFlushCompressedSize = cms.untracked.int32(-900), fastCloning = cms.untracked.bool(False), - fileName = cms.untracked.string('file:ReReco-Run2016H-MET-UL2016_MiniAODv2-00002.root'), + fileName = cms.untracked.string('file:ReReco-Run2016H-MET-UL2016_MiniAODv2-00001.root'), outputCommands = process.MINIAODEventContent.outputCommands, overrideBranchesSplitLevel = cms.untracked.VPSet( cms.untracked.PSet( diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..4dcec9201 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MuonEG-UL2016_MiniAODv2.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MuonEG-UL2016_MiniAODv2.py index 479a32161..b45a47faa 100644 --- a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MuonEG-UL2016_MiniAODv2.py +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-MuonEG-UL2016_MiniAODv2.py @@ -2,7 +2,7 @@ # using: # Revision: 1.19 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v -# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-MuonEG-UL2016_MiniAODv2-00002.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-MuonEG-UL2016_MiniAODv2-00002_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-MuonEG-UL2016_MiniAODv2-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-MuonEG-UL2016_MiniAODv2-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 import FWCore.ParameterSet.Config as cms from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 @@ -55,7 +55,7 @@ dropMetaData = cms.untracked.string('ALL'), eventAutoFlushCompressedSize = cms.untracked.int32(-900), fastCloning = cms.untracked.bool(False), - fileName = cms.untracked.string('file:ReReco-Run2016H-MuonEG-UL2016_MiniAODv2-00002.root'), + fileName = cms.untracked.string('file:ReReco-Run2016H-MuonEG-UL2016_MiniAODv2-00001.root'), outputCommands = process.MINIAODEventContent.outputCommands, overrideBranchesSplitLevel = cms.untracked.VPSet( cms.untracked.PSet( diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2.py index 5da908220..9f1216cba 100644 --- a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2.py +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2.py @@ -2,7 +2,7 @@ # using: # Revision: 1.19 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v -# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2-00002.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2-00002_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 import FWCore.ParameterSet.Config as cms from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 @@ -55,7 +55,7 @@ dropMetaData = cms.untracked.string('ALL'), eventAutoFlushCompressedSize = cms.untracked.int32(-900), fastCloning = cms.untracked.bool(False), - fileName = cms.untracked.string('file:ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2-00002.root'), + fileName = cms.untracked.string('file:ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2-00001.root'), outputCommands = process.MINIAODEventContent.outputCommands, overrideBranchesSplitLevel = cms.untracked.VPSet( cms.untracked.PSet( diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..5fc59c890 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_BParking-00002.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_BParking-00002_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_BParking-00002.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2.py index 62fddad17..358db325a 100644 --- a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2.py +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2.py @@ -2,7 +2,7 @@ # using: # Revision: 1.19 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v -# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2-00002.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2-00002_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +# with command line options: RECO --conditions 106X_dataRun2_v35 --datatier MINIAOD --era Run2_2016 --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 import FWCore.ParameterSet.Config as cms from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 @@ -55,7 +55,7 @@ dropMetaData = cms.untracked.string('ALL'), eventAutoFlushCompressedSize = cms.untracked.int32(-900), fastCloning = cms.untracked.bool(False), - fileName = cms.untracked.string('file:ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2-00002.root'), + fileName = cms.untracked.string('file:ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2-00001.root'), outputCommands = process.MINIAODEventContent.outputCommands, overrideBranchesSplitLevel = cms.untracked.VPSet( cms.untracked.PSet( diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..0f89ca425 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_BParking.py b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_BParking.py new file mode 100644 index 000000000..e19a91f70 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_BParking.py @@ -0,0 +1,203 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO --conditions 106X_dataRun2_v37 --customise Configuration/DataProcessing/Utils.addMonitoring,Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016 --datatier MINIAOD --era Run2_2016,bParking --eventcontent MINIAOD --filein _placeholder_.root --fileout file:ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_BParking-00001.root --nThreads 2 --no_exec --python_filename ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_BParking-00001_0_cfg.py --scenario pp --step PAT --runUnscheduled --data --procModifiers run2_miniAOD_UL_preSummer20 +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 +from Configuration.Eras.Modifier_bParking_cff import bParking +from Configuration.ProcessModifiers.run2_miniAOD_UL_preSummer20_cff import run2_miniAOD_UL_preSummer20 + +process = cms.Process('PAT',Run2_2016,bParking,run2_miniAOD_UL_preSummer20) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('Configuration.StandardSequences.EndOfProcess_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(1) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('_placeholder_.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:1'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('file:ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_BParking-00001.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVerticesWithBS__*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v37', '') + +# Path and EndPath definitions +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_hfNoisyHitsFilter = cms.Path(process.hfNoisyHitsFilter) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.Flag_BadPFMuonDzFilter = cms.Path(process.BadPFMuonDzFilter) +process.endjob_step = cms.EndPath(process.endOfProcess) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) + +# Schedule definition +process.schedule = cms.Schedule(process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadPFMuonDzFilter,process.Flag_hfNoisyHitsFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.endjob_step,process.MINIAODoutput_step) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(2) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30517/BTagCSV_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30517/BTagCSV_doc.html new file mode 100644 index 000000000..ec45ce8c8 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30517/BTagCSV_doc.html @@ -0,0 +1,1674 @@ + + + + Documentation for 01472671-4A55-5A4A-B2CE-2C7990D279E3.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrain_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrain_BRILBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_refBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30517/BTagCSV_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30517/BTagCSV_doc.json new file mode 100644 index 000000000..1daee95f2 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30517/BTagCSV_doc.json @@ -0,0 +1,14294 @@ +{ + "filename": "01472671-4A55-5A4A-B2CE-2C7990D279E3.root", + "filesize": 2720746.21875, + "trees": { + "Events": { + "entries": 2126016, + "allsize": 2714672.89453125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 72.259765625, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 78.361328125, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 5708.892578125, + "entries": 2126016, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 316.029296875, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 903.955078125, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 1022.6328125, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 893.013671875, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 893.857421875, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 902.3984375, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 849.767578125, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 817.029296875, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 1022.5859375, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 656.236328125, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 1146.787109375, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 906.689453125, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 852.775390625, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 922.283203125, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 908.845703125, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 966.83984375, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 876.546875, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 1080.4453125, + "entries": 212438.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 510.494140625, + "entries": 212438.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 573.05078125, + "entries": 212438.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 449.064453125, + "entries": 212438.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 590.4453125, + "entries": 212438.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 524.08984375, + "entries": 212438.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 455.634765625, + "entries": 212438.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 539.626953125, + "entries": 212438.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 527.689453125, + "entries": 212438.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 523.888671875, + "entries": 212438.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4063.888671875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3781.15625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3299.509765625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4072.3359375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3779.822265625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3245.59375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1150.033203125, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 10079.0126953125, + "entries": 11327302.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 26250.267578125, + "entries": 11327302.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 16887.8359375, + "entries": 11327302.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 26321.123046875, + "entries": 11327302.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 18299.16796875, + "entries": 11327302.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 4855.677734375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 7404.92578125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 4910.216796875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 7395.15234375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 731.943359375, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 4587.39453125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 4581.08984375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1348.63671875, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1348.328125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 5495.193359375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2284.47265625, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2281.142578125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2213.51953125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 2221.49609375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 5751.55078125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 3888.693359375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5822.146484375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 3935.16015625, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 6852.42578125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 5558.859375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 4177.15625, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 6160.43359375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 4341.26953125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 5500.849609375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 4470.591796875, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 4550.0703125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 5518.033203125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 8480.810546875, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 8107.634765625, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 6401.923828125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 6683.603515625, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 8563.845703125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 8364.779296875, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 6134.3046875, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 8521.251953125, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 4771.818359375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 4806.818359375, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 4880.3046875, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 5342.921875, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 4352.107421875, + "entries": 2058394.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1717.349609375, + "entries": 2058394.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1490.228515625, + "entries": 2058394.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2304.556640625, + "entries": 2058394.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1720.30078125, + "entries": 2058394.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1931.6015625, + "entries": 2058394.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1796.015625, + "entries": 2058394.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 4334.80859375, + "entries": 2058394.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 3902.51953125, + "entries": 2058394.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 1271.919921875, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 1170.4609375, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1502.244140625, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2172.408203125, + "entries": 2058394.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1522.603515625, + "entries": 2058394.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 1190.7421875, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 1213.90625, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 1281.146484375, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 1236.25390625, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 1281.0859375, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1345.638671875, + "entries": 2058394.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1173.162109375, + "entries": 2058394.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 697.623046875, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 2936.091796875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 5163.03515625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 5661.9453125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 5276.0, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 5498.9140625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 5323.66015625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 5419.62109375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 4858.583984375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 5017.869140625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 4946.904296875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 4743.689453125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 5012.87890625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 4828.9453125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 5025.544921875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 4753.115234375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 4978.9140625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 4751.25390625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 5439.5234375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 5087.44921875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 5462.40625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 5671.650390625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 5549.900390625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 5509.697265625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 6409.14453125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 5081.943359375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 4708.51953125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 4109.767578125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 2575.365234375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 5090.9921875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 5600.03125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 5512.22265625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 5585.62109375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 5746.009765625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 5640.111328125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 5589.341796875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 5067.046875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 5724.830078125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 5543.052734375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 5514.294921875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 5139.072265625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 6353.96875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 4690.958984375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 3476.09765625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 5148.841796875, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 5126.111328125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 5125.271484375, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 5117.931640625, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 3533.376953125, + "entries": 2143338.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1377.23828125, + "entries": 2143338.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1914.404296875, + "entries": 2143338.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1913.212890625, + "entries": 2143338.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 1836.822265625, + "entries": 2143338.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 1727.759765625, + "entries": 2143338.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 2803.19921875, + "entries": 2143338.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 130.24609375, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 272.208984375, + "entries": 20092.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 253.701171875, + "entries": 20092.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 253.169921875, + "entries": 20092.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 244.87109375, + "entries": 20092.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 266.546875, + "entries": 20092.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 193.873046875, + "entries": 20092.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 807.099609375, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7164.703125, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7062.1884765625, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 7546.23046875, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 5761.8173828125, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4860.7041015625, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 7580.19921875, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6228.7275390625, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5252.0166015625, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3462.5869140625, + "entries": 2740710.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1820.505859375, + "entries": 2740710.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1878.595703125, + "entries": 2740710.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1858.8076171875, + "entries": 2740710.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1590.078125, + "entries": 2740710.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1186.634765625, + "entries": 2740710.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1493.80078125, + "entries": 2740710.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1166.2734375, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 12485.587890625, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 26498.4755859375, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 26268.9130859375, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 24808.1103515625, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 25018.5283203125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 31420.4638671875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 26858.6923828125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 29268.9736328125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 26346.60546875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 5590.625, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 20588.611328125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 18573.6982421875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 37628.9609375, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 5449.1513671875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 5451.7880859375, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 29107.716796875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 4666.857421875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 23855.3798828125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 21242.828125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 20867.1904296875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 36848.8935546875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 28779.7734375, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 25578.564453125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 26387.2470703125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 22918.2841796875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 23133.466796875, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 19097.8916015625, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 23043.705078125, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 18961.9384765625, + "entries": 16480713.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 4274.751953125, + "entries": 16480713.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2588.724609375, + "entries": 16480713.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2572.1025390625, + "entries": 16480713.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 3252.9208984375, + "entries": 16480713.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3096.6787109375, + "entries": 16480713.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 3560.861328125, + "entries": 16480713.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2564.658203125, + "entries": 16480713.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 4076.15625, + "entries": 16480713.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 3509.4921875, + "entries": 16480713.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 5586.544921875, + "entries": 16480713.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 12493.5849609375, + "entries": 16480713.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 2696.34765625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 2461.908203125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 2501.5703125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2531.962890625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 1087.73046875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 507.611328125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 1128.591796875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 1079.923828125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 1098.439453125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 3150.615234375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 3202.2421875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 633.796875, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 5994.09375, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1751.123046875, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 4067.35546875, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4060.419921875, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2892.66796875, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4176.94921875, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2830.572265625, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3995.619140625, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 5660.49609375, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 3079.146484375, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 4383.724609375, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2854.880859375, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 3989.2109375, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5419.7421875, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4908.4375, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 4361.263671875, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 5914.65625, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 5351.7890625, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 3783.96875, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 3445.87109375, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 3217.931640625, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 5474.58203125, + "entries": 1364493.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1377.49609375, + "entries": 1364493.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1271.67578125, + "entries": 1364493.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1377.021484375, + "entries": 1364493.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1128.4375, + "entries": 1364493.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1263.75, + "entries": 1364493.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4213.15625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4213.35546875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2823.611328125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3580.798828125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2829.302734375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 4902.869140625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 7362.33984375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 4024.859375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3294.904296875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3337.1328125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 288.474609375, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1530.53515625, + "entries": 438039.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1629.353515625, + "entries": 438039.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1630.236328125, + "entries": 438039.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 538.107421875, + "entries": 438039.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 539.2109375, + "entries": 438039.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1446.740234375, + "entries": 438039.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 630.34765625, + "entries": 438039.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 619.603515625, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3795.79296875, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2540.603515625, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 3806.13671875, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3837.833984375, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2627.69140625, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 4011.484375, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3652.697265625, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2798.986328125, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 3041.546875, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1269.888671875, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5212.775390625, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4865.615234375, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 5298.919921875, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 5129.025390625, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 5382.939453125, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 3977.53125, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 5353.736328125, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 2746.828125, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 3583.1796875, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 3576.53515625, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 1994.8984375, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 2706.158203125, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1208.603515625, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 2754.642578125, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2975.677734375, + "entries": 1246878.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1263.205078125, + "entries": 1246878.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1616.064453125, + "entries": 1246878.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1508.6015625, + "entries": 1246878.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1725.169921875, + "entries": 1246878.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1265.09765625, + "entries": 1246878.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1095.55859375, + "entries": 1246878.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1075.708984375, + "entries": 1246878.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1185.107421875, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1055.345703125, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1010.001953125, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1145.583984375, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1145.857421875, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1146.564453125, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1091.78125, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1552.185546875, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1144.98828125, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1138.099609375, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1103.798828125, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 1175.19921875, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1042.716796875, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 937.9140625, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 926.556640625, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 1134.12109375, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1091.126953125, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1129.775390625, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1111.359375, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1121.29296875, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1112.015625, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1142.658203125, + "entries": 1246878.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 794.138671875, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 5200.79296875, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 5202.23828125, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1455.875, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1452.9921875, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 3309.49609375, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 4970.0859375, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 7535.8515625, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 5075.859375, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 4410.591796875, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 4790.40234375, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 5159.955078125, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 10622.955078125, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 10273.642578125, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 7487.703125, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 10433.083984375, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 5723.068359375, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 5875.96484375, + "entries": 2608369.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1450.958984375, + "entries": 2608369.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 1570.376953125, + "entries": 2608369.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 1594.7890625, + "entries": 2608369.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 2044.390625, + "entries": 2608369.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2541.544921875, + "entries": 2608369.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1451.03125, + "entries": 2608369.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 3770.68359375, + "entries": 2608369.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1602.873046875, + "entries": 2608369.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1621.53125, + "entries": 2608369.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1593.5, + "entries": 2608369.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1324.291015625, + "entries": 2608369.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1364.794921875, + "entries": 2608369.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1599.3984375, + "entries": 2608369.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1251.341796875, + "entries": 2608369.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 391.63671875, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2993.4970703125, + "entries": 1071897.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 3323.4150390625, + "entries": 1071897.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 742.7177734375, + "entries": 1071897.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 744.8681640625, + "entries": 1071897.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 935.80078125, + "entries": 1071897.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 939.9833984375, + "entries": 1071897.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 1005.0361328125, + "entries": 1071897.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 744.6279296875, + "entries": 1071897.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 4888.578125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4045.951171875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4045.259765625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4045.033203125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4046.193359375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4046.412109375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4051.650390625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 7382.607421875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3799.03125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3798.33984375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3801.1015625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3801.54296875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3800.5390625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3801.28125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3464.51953125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4061.94921875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3776.771484375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3295.77734375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4041.658203125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3804.3046875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3463.564453125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 6634.22265625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 6747.8125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 6973.5625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 7053.330078125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 6768.712890625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 162.12890625, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 20977.5205078125, + "entries": 12686191.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 20642.5009765625, + "entries": 12686191.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 24086.07421875, + "entries": 12686191.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 7067.357421875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 7296.041015625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 7173.12109375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 7240.484375, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 984.05078125, + "entries": 2126016, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1436.416015625, + "entries": 2126016, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1143.287109375, + "entries": 2126016, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 392.328125, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 3006.5927734375, + "entries": 1071897.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2891.0302734375, + "entries": 1071897.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 1006.2041015625, + "entries": 1071897.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 645.294921875, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 6208.583984375, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 6355.513671875, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 7976.765625, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 6842.1767578125, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 5412.4970703125, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 5467.9541015625, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 7877.52734375, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 6473.4599609375, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 4182.904296875, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 6648.1884765625, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 6484.5712890625, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 6270.2236328125, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 6078.9267578125, + "entries": 2938887.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 480.65234375, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 2051.7578125, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 2311.845703125, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 2521.09375, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 2430.091796875, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 2009.6171875, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 2010.6015625, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 2036.994140625, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1914.359375, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1745.51171875, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 2426.966796875, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1626.7890625, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 3088.8203125, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 2069.51953125, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1846.904296875, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 2101.876953125, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1331.8984375, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 2084.98828125, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1941.9296875, + "entries": 673862.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 928.828125, + "entries": 673862.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1100.177734375, + "entries": 673862.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1146.8984375, + "entries": 673862.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 780.689453125, + "entries": 673862.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 792.859375, + "entries": 673862.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 878.732421875, + "entries": 673862.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1112.44921875, + "entries": 673862.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1033.46484375, + "entries": 673862.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 822.595703125, + "entries": 673862.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 4037.212890625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3830.8203125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3415.744140625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1394.48046875, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 47143.85546875, + "entries": 24508446.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 43635.0263671875, + "entries": 24508446.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 43070.3037109375, + "entries": 24508446.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 26586.099609375, + "entries": 24508446.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 2516.30859375, + "entries": 24508446.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 32840.951171875, + "entries": 24508446.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 5692.9453125, + "entries": 24508446.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 4582.7236328125, + "entries": 24508446.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 2718.169921875, + "entries": 24508446.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 9351.96875, + "entries": 24508446.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 74.87890625, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 11933.7841796875, + "entries": 6377161.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2855.423828125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2461.76953125, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2141.4921875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 5814.12890625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2378.154296875, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3158.640625, + "entries": 2126016, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1426.634765625, + "entries": 2126016, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1397.748046875, + "entries": 2126016, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 939.017578125, + "entries": 2126016, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 11275.2216796875, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 10853.25, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 11225.39453125, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 10878.0087890625, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 6335.3955078125, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 3829.4892578125, + "entries": 5121803.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1158.37890625, + "entries": 2058394.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3318.8818359375, + "entries": 16480713.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1139.8046875, + "entries": 1246878.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1229.69921875, + "entries": 2608369.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 746.142578125, + "entries": 673862.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 9648.3935546875, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 13441.74609375, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 10744.6904296875, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 8012.4951171875, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 13335.19140625, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 11015.5751953125, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 12144.150390625, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 12085.115234375, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 14077.373046875, + "entries": 5121803.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 3059.34375, + "entries": 5121803.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_AND": { + "name": "L1_BPTX_LUT1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B1": { + "name": "L1_BPTX_LUT1_B1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B2": { + "name": "L1_BPTX_LUT1_B2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_OR": { + "name": "L1_BPTX_LUT1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_AND": { + "name": "L1_BPTX_LUT2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B1NotB2": { + "name": "L1_BPTX_LUT2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B2NotB1": { + "name": "L1_BPTX_LUT2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_NotOR": { + "name": "L1_BPTX_LUT2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_AND": { + "name": "L1_BPTX_TRIG2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.982421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B1NotB2": { + "name": "L1_BPTX_TRIG2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B2NotB1": { + "name": "L1_BPTX_TRIG2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_NotOR": { + "name": "L1_BPTX_TRIG2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.673828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.982421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.134765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_AND": { + "name": "L1_BRIL_TRIG3_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.982421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_delayedAND": { + "name": "L1_BRIL_TRIG3_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_ref": { + "name": "L1_BRIL_TRIG3_ref", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.982421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.25390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.25390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.25390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.908203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.5625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 389.037109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.025390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.486328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.091796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 246.787109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 238.685546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.533203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 324.556640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 286.732421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 310.041015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 270.146484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 333.595703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 336.595703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 366.833984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 368.623046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 369.943359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 371.693359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.4765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.4765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 379.9375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 401.5546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 400.57421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.490234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.806640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.263671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 279.412109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.345703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.76171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.7265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.8125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.8125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.916015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.7265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.958984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.322265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.91796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.38671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.529296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.15234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.7890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.13671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.5078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 390.9765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.73046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 384.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.060546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.263671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.87109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.1484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.87109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.9609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.44921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.3671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 248.58203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 303.015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 285.875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 268.4921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 250.51953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.87109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.87109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.87109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.87109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.228515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.576171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.349609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.630859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.857421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 208.591796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 300.134765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 336.017578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 314.013671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 337.064453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 334.685546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 262.0546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.94140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.41796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.83984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.78515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.78515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.7109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.466796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.248046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.48828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.009765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.412109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.376953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.318359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.279296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.6015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.79296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.96484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.3671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.111328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.16796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.31640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.240234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.212890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.095703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.896484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.474609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.7265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.912109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.658203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 300.541015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.697265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.25390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.529296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 198.720703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 394.197265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 348.607421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.51171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.310546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.869140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.892578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.361328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.681640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.744140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 295.416015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 352.689453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 379.994140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 376.697265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 373.138671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 370.060546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 362.814453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.39453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.7578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.67578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.3359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.6015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.26953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.40625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.26171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.7421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 263.54296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 262.8984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 268.7109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 313.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 321.0390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 338.8125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 347.41796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 338.15625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 346.578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 337.41015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 345.8984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.509765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.7109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.494140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 304.537109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.96875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 369.986328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 400.166015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 394.326171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 373.626953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.3671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.0234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.748046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.748046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.7421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.337890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.220703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 159.701171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.224609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.634765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.146484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.263671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 170.880859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 168.744140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.068359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.146484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.44921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.958984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.474609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.38671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.96875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.462890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.748046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 307.982421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 388.158203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.49609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.439453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.767578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 252.302734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 367.248046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 396.380859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.8046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.990234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.037109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.607421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.826171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.7421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.943359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 118.095703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 188.3359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 117.423828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 89.8125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 72.642578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.4140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.376953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 74.228515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 167.220703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.501953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.189453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.55078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 73.830078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.435546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 74.046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.3359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.09375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 72.6171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 73.2421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.78515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.78515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.822265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 72.427734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 118.017578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.908203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.81640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.017578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 120.169921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 190.41015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 119.498046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 91.88671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.716796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.48828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.451171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 76.302734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 169.294921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.576171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.263671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.4765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 75.904296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.509765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 76.12109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.41015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 75.31640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 71.859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 71.859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.896484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.501953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 120.072265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.5, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 171.787109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.294921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.072265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.03515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.724609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.70703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.169921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.224609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.134765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.24609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.064453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.38671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.361328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.693359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.9921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.69921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.666015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.708984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.6484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.1015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.138671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.580078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.248046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.482421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.49609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.15234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.44140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.916015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.16796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.2109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.17578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.9375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.78515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.822265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.0078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.53125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.119140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.28125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.478515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.603515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.01171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.1953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.267578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.619140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.509765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.83203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.927734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.662109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.509765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.943359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.8203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.017578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.318359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.748046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.044921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.087890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.994140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.376953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 183.3984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.90234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 193.37890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 214.78125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 236.671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 269.427734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.14453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.970703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.00390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.115234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.71875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.908203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.076171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.513671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.923828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.876953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.47265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.458984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.267578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.5390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.185546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.783203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.611328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.724609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.00390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.642578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.275390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.982421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.69921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.69921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.841796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.80859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.8515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.09375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.87109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.2421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.30859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.662109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.591796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.548828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.6015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.75390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.92578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.806640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.177734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.2265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.455078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.3359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.57421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.216796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.626953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.15234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.521484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.92578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.380859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.7109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.9296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.876953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.93359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.763671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.35546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.2734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.96875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.908203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.583984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.095703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.26171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.05078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.962890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.970703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.6328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.158203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.08203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.08203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.212890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.3671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.521484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.880859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.81640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.64453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.8046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.748046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.748046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.439453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.439453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.11328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.345703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.826171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.158203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.681640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 139.560546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.958984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.013671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.232421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.98828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.98046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.59765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.52734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 125.44140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.03125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.66796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.349609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.513671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.310546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.580078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.666015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.798828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.14453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.87890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.513671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.642578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.150390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.451171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.892578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.32421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.93359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.4765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.9765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.419921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.916015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.232421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.548828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.244140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.833984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.498046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.220703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.693359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 194.107421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 159.615234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.91015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.001953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.072265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.208984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.955078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.615234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.314453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.13671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.8828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.55078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.369140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.16796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.09765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.263671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.40625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.439453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.662109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.185546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.080078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.96875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 262.330078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 210.408203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 288.427734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 222.033203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.509765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.09765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 354.0234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 141.70703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 366.919921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.103515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 258.73828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 306.36328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 234.62109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 266.83203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.341796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.712890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.509765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.814453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.90234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.666015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.283203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.2578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.4609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.86328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.880859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.458984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.951171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.220703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.259765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.720703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.146484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.416015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.3125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.53125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.998046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.46484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.662109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.02734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.0859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.23046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.01171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.05078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.931640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.912109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.568359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.73828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.439453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.76171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.638671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.955078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.05078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.126953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.134765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.17578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.396484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.888671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.8828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.931640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.400390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.923828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.408203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.08203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.755859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.861328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.822265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.517578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.884765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.455078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.0, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.30859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.513671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.5546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.03515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.1796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.1953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.23046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.9375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.16796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 191.08203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 129.6953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 128.546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.54296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.33203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.37890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.52734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.8515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.12890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.580078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.392578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.150390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.205078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.271484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.322265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.755859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.919921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.85546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.8359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.38671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.787109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.591796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.197265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.99609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.751953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.92578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.212890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.654296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.970703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.55078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.341796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 363.228515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 323.978515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.279296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.771484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.072265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.146484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.494140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.13671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.55078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.55078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.55078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.33203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.552734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.08984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.787109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.822265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.31640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.658203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.09765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.658203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.16796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.220703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.205078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.896484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.361328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.048828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.7734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.46484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.5703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.09375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.439453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.970703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.662109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.232421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.916015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.087890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.841796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.658203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.103515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.9921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.513671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.990234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.748046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.658203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.037109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.783203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.017578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.240234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.16796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.60546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.08203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.12890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.24609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.861328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.40234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.642578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.66015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.66796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.45703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.904296875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.87890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.83203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.576171875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.30078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.462890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.623046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.0390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.02734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.060546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.193359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 262.587890625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 178.072265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.4453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.666015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.47265625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.6484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.5, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.970703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.970703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.970703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.130859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.4765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.4765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.4765625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.185546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.38671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.1796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.193359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.810546875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.521484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.720703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.5625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.25390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.63671875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.982421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.01953125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.673828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.673828125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.982421875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.599609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.056640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.931640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9453125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.365234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.9375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.662109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.662109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.78515625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.033203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.755859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.345703125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.291015625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.99609375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.203125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.578125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.56640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.81640625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.44921875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3046875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.2734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.240234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.662109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.80859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.44140625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.0234375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.328125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain_BRIL": { + "name": "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.591796875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain_copy": { + "name": "HLT_ZeroBias_FirstBXAfterTrain_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.205078125, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.443359375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.55859375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.8984375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.734375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.0390625, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.21484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.21484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.21875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.21484375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2109375, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.21875, + "entries": 2126016, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 72.259765625, + "entries": 2126016, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 78.361328125, + "entries": 2126016, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 5708.892578125, + "entries": 2126016, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 20632.703125, + "entries": 212438.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11144.5546875, + "entries": 2126016, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 11097.751953125, + "entries": 2126016, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 98987.4404296875, + "entries": 11327302.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 12260.603515625, + "entries": 2126016, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 12305.369140625, + "entries": 2126016, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 215749.9140625, + "entries": 2058394.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 256397.779296875, + "entries": 2143338.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1614.6171875, + "entries": 20092.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 65554.6962890625, + "entries": 2740710.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 698808.5546875, + "entries": 16480713.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 21446.943359375, + "entries": 2126016, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 98666.6796875, + "entries": 1364493.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 40582.330078125, + "entries": 2126016, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 15529.1611328125, + "entries": 438039.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 124102.59375, + "entries": 1246878.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 125785.90234375, + "entries": 2608369.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 11821.5830078125, + "entries": 1071897.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 62818.041015625, + "entries": 2126016, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11134.498046875, + "entries": 2126016, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11309.52734375, + "entries": 2126016, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 6634.22265625, + "entries": 2126016, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6747.8125, + "entries": 2126016, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 6973.5625, + "entries": 2126016, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7053.330078125, + "entries": 2126016, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 6768.712890625, + "entries": 2126016, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 65868.224609375, + "entries": 12686191.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 7067.357421875, + "entries": 2126016, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 7296.041015625, + "entries": 2126016, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 7173.12109375, + "entries": 2126016, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 7240.484375, + "entries": 2126016, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 984.05078125, + "entries": 2126016, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1436.416015625, + "entries": 2126016, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1143.287109375, + "entries": 2126016, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 82924.587890625, + "entries": 2938887.0000000005, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 47375.056640625, + "entries": 673862.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 11283.77734375, + "entries": 2126016, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 219532.8330078125, + "entries": 24508446.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 12008.6630859375, + "entries": 6377161.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 21633.9921875, + "entries": 2126016, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 162899.8515625, + "entries": 5121803.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 40903.84765625, + "entries": 2126016, + "subs": [ + "L1_AlwaysTrue", + "L1_BPTX_LUT1_AND", + "L1_BPTX_LUT1_B1", + "L1_BPTX_LUT1_B2", + "L1_BPTX_LUT1_OR", + "L1_BPTX_LUT2_AND", + "L1_BPTX_LUT2_B1NotB2", + "L1_BPTX_LUT2_B2NotB1", + "L1_BPTX_LUT2_NotOR", + "L1_BPTX_TRIG2_AND", + "L1_BPTX_TRIG2_B1NotB2", + "L1_BPTX_TRIG2_B2NotB1", + "L1_BPTX_TRIG2_NotOR", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BRIL_TRIG3_AND", + "L1_BRIL_TRIG3_delayedAND", + "L1_BRIL_TRIG3_ref", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_ETT40_BptxAND" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 4590.49609375, + "entries": 2126016, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 63.908203125, + "entries": 2126016, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 66.328125, + "entries": 2126016, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 45325.84375, + "entries": 2126016, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "HLT_ZeroBias_FirstBXAfterTrain_copy", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 66.328125, + "entries": 2126016, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 21, + "allsize": 0.150390625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.150390625, + "entries": 21, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.150390625, + "entries": 21, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 948, + "allsize": 1.7666015625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2216796875, + "entries": 948, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.9365234375, + "entries": 948, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2001953125, + "entries": 948, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.19921875, + "entries": 948, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.208984375, + "entries": 948, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2216796875, + "entries": 948, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.9365234375, + "entries": 948, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2001953125, + "entries": 948, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.19921875, + "entries": 948, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.208984375, + "entries": 948, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30518/BTagMu_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30518/BTagMu_doc.html new file mode 100644 index 000000000..bf3b7d7f2 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30518/BTagMu_doc.html @@ -0,0 +1,1684 @@ + + + + Documentation for 033D7942-C0C1-B54F-9BEE-2A171BFCDCEB.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrain_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrain_BRILBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_refBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30518/BTagMu_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30518/BTagMu_doc.json new file mode 100644 index 000000000..b0d8c07e0 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30518/BTagMu_doc.json @@ -0,0 +1,14394 @@ +{ + "filename": "033D7942-C0C1-B54F-9BEE-2A171BFCDCEB.root", + "filesize": 1418390.0517578125, + "trees": { + "Events": { + "entries": 1273985, + "allsize": 1413291.66796875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 36.61328125, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 43.83203125, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 3459.41796875, + "entries": 1273985, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 156.78125, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 397.1572265625, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 446.640625, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 393.9970703125, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 394.5986328125, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 399.275390625, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 377.2021484375, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 361.4267578125, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 447.08203125, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 289.8349609375, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 505.8916015625, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 401.1572265625, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 380.7744140625, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 407.0048828125, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 400.7548828125, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 426.068359375, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 387.435546875, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 467.994140625, + "entries": 87221.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 232.6884765625, + "entries": 87221.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 259.740234375, + "entries": 87221.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 206.2197265625, + "entries": 87221.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 264.412109375, + "entries": 87221.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 237.791015625, + "entries": 87221.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 223.7802734375, + "entries": 87221.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 245.9755859375, + "entries": 87221.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 240.8037109375, + "entries": 87221.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 239.0185546875, + "entries": 87221.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 2415.33203125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 2267.58984375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2057.171875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 2422.078125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 2262.0625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2020.71875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 665.109375, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 5639.359375, + "entries": 6273473.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 14699.5625, + "entries": 6273473.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 9506.33203125, + "entries": 6273473.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 14793.94140625, + "entries": 6273473.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 10304.953125, + "entries": 6273473.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 2879.37109375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 4448.71875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 2916.32421875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 4442.62890625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 345.828125, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1764.177734375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 1762.28515625, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 605.068359375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 604.90625, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2078.5341796875, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1012.525390625, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1012.8134765625, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 989.052734375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 991.099609375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2184.912109375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1520.2880859375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2209.0615234375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1524.58984375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2511.66796875, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2108.30859375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1629.828125, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 2322.806640625, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1677.275390625, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2092.5400390625, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1729.3857421875, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1767.8046875, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 2099.7080078125, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3101.1806640625, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2961.5517578125, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 2354.7490234375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 2420.8486328125, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 3133.6357421875, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3055.4912109375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 2309.794921875, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 3129.1396484375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1818.3740234375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1828.0654296875, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1854.09375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 2022.6484375, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1693.0029296875, + "entries": 719249.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 742.5107421875, + "entries": 719249.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 663.0517578125, + "entries": 719249.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 925.4873046875, + "entries": 719249.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 743.24609375, + "entries": 719249.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 801.7109375, + "entries": 719249.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 771.017578125, + "entries": 719249.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1684.87890625, + "entries": 719249.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1513.86328125, + "entries": 719249.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 583.3134765625, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 549.95703125, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 670.1962890625, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 921.6708984375, + "entries": 719249.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 669.6923828125, + "entries": 719249.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 559.384765625, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 568.287109375, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 584.8310546875, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 570.37109375, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 584.34375, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 606.2822265625, + "entries": 719249.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 556.5595703125, + "entries": 719249.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 358.40234375, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1565.583984375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 2984.86328125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 3313.5546875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 2982.2734375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 3206.8046875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 3083.71875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 3102.8515625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 3011.474609375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 3103.509765625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 3068.275390625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 2905.822265625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 3099.4765625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 2966.47265625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 3106.251953125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 2913.611328125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 3078.3046875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 2900.34375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 3209.04296875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2811.46875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 3084.63671875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 3331.373046875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 3248.333984375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 3230.841796875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 3698.75390625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 2911.267578125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 2935.02734375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2491.892578125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1717.912109375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 2917.23828125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 3282.5703125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 3194.671875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 3231.18359375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 3362.544921875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 3293.103515625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 3255.111328125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2800.44921875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 3347.345703125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 3239.861328125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 3229.193359375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 2994.763671875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 3668.22265625, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 2744.220703125, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1946.3984375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 2941.998046875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 2933.279296875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 2922.099609375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 2917.427734375, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 2524.294921875, + "entries": 1268104.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 736.73046875, + "entries": 1268104.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1022.556640625, + "entries": 1268104.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1022.908203125, + "entries": 1268104.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 962.986328125, + "entries": 1268104.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 1057.337890625, + "entries": 1268104.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1582.169921875, + "entries": 1268104.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 116.33203125, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 309.0888671875, + "entries": 41542.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 271.3330078125, + "entries": 41542.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 270.6416015625, + "entries": 41542.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 250.572265625, + "entries": 41542.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 288.984375, + "entries": 41542.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 158.7509765625, + "entries": 41542.00000000001, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 426.6953125, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3585.21875, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3531.640625, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 3781.14453125, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 2864.19140625, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2399.9453125, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 3792.3828125, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 3126.42578125, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2612.64453125, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1738.2578125, + "entries": 1322326.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 974.08984375, + "entries": 1322326.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 995.8359375, + "entries": 1322326.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1000.88671875, + "entries": 1322326.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 823.87109375, + "entries": 1322326.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 632.3837890625, + "entries": 1322326.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 772.787109375, + "entries": 1322326.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 655.515625, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 5719.212890625, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 11670.3154296875, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 11458.5810546875, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 10533.5205078125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 10889.9501953125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 14016.9052734375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 11745.0673828125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 12981.5517578125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 11884.08984375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 2482.4609375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 9174.685546875, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 8445.3310546875, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 16801.8916015625, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 2552.5615234375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 2552.1240234375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 13174.689453125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 3662.115234375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 10934.9541015625, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 9587.828125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 9448.7802734375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 16476.0361328125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 13088.3515625, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 11629.115234375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 11382.2509765625, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 10211.8271484375, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 10456.763671875, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 8704.8447265625, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 10430.939453125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 8637.9501953125, + "entries": 7136230.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2051.142578125, + "entries": 7136230.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1379.869140625, + "entries": 7136230.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1350.9150390625, + "entries": 7136230.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 1638.4521484375, + "entries": 7136230.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1663.3154296875, + "entries": 7136230.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2360.990234375, + "entries": 7136230.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 1791.623046875, + "entries": 7136230.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2008.2265625, + "entries": 7136230.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2348.234375, + "entries": 7136230.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 2735.818359375, + "entries": 7136230.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 5625.162109375, + "entries": 7136230.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1624.88671875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 948.48046875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 961.125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 970.48046875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 2311.8984375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 951.3359375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 2427.09375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 2274.46484375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 2343.9921875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 2743.2890625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2834.00390625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 324.09765625, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 2734.220703125, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 851.9208984375, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1885.048828125, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1889.8134765625, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1357.662109375, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1941.611328125, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1335.3193359375, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1857.8857421875, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 2586.720703125, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1448.5263671875, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2027.4541015625, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1303.8876953125, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 1858.09765625, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2400.8359375, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2122.94921875, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2015.7509765625, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 2698.849609375, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 2465.62109375, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 1748.814453125, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1601.970703125, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1474.5302734375, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 2483.16015625, + "entries": 608523.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 677.517578125, + "entries": 608523.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 621.185546875, + "entries": 608523.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 677.0419921875, + "entries": 608523.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 563.00390625, + "entries": 608523.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 623.9609375, + "entries": 608523.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 2502.98046875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 2504.1796875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 1700.83984375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 2142.85546875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 1700.15625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 2910.9609375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 4422.359375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 2400.046875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2020.640625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2004.0546875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 176.7734375, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 955.654296875, + "entries": 280856.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1017.4931640625, + "entries": 280856.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1018.0986328125, + "entries": 280856.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 321.4130859375, + "entries": 280856.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 321.8671875, + "entries": 280856.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 900.0986328125, + "entries": 280856.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 379.18359375, + "entries": 280856.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 408.6640625, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 5096.59765625, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 3192.732421875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 5093.07421875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5129.076171875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 3289.6328125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 5430.921875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 4860.380859375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 3727.001953125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 3905.12890625, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1298.755859375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 7736.650390625, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 7439.998046875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 7791.888671875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 7655.482421875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 7843.654296875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 5381.56640625, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 7752.607421875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 3466.31640625, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 4760.421875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 4749.3359375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 2658.89453125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 3446.380859375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1247.224609375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 3490.029296875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 3853.095703125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1287.755859375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1581.580078125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1665.99609375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1942.896484375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1291.99609375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1033.6796875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1053.361328125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1131.1728515625, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 921.7919921875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 798.8076171875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1022.4072265625, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1040.0322265625, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1017.4970703125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 989.5078125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1785.0263671875, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1038.638671875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1048.9423828125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1037.2060546875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 1015.9765625, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 855.9833984375, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 764.203125, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 740.5185546875, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 957.080078125, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 925.6943359375, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1031.5224609375, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1035.30078125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1050.080078125, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 990.369140625, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1038.3623046875, + "entries": 1959549.0000000002, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 388.890625, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 2048.07421875, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 2049.296875, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 669.47265625, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 668.15625, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1367.26953125, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 1959.53125, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 2881.5703125, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 1991.34765625, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 1787.986328125, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 1888.41015625, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 2025.255859375, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 3960.119140625, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 3812.087890625, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 2861.71875, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 3910.962890625, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 2212.087890625, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 2262.21875, + "entries": 932795.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 667.208984375, + "entries": 932795.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 717.869140625, + "entries": 932795.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 727.0419921875, + "entries": 932795.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 872.40234375, + "entries": 932795.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1027.162109375, + "entries": 932795.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 667.16796875, + "entries": 932795.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 1542.9853515625, + "entries": 932795.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 734.1552734375, + "entries": 932795.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 738.794921875, + "entries": 932795.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 725.447265625, + "entries": 932795.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 636.1923828125, + "entries": 932795.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 650.7431640625, + "entries": 932795.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 729.591796875, + "entries": 932795.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 613.6474609375, + "entries": 932795.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 243.90625, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1915.7724609375, + "entries": 696114.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 2128.6904296875, + "entries": 696114.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 457.26171875, + "entries": 696114.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 458.2978515625, + "entries": 696114.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 581.44140625, + "entries": 696114.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 585.1669921875, + "entries": 696114.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 626.4541015625, + "entries": 696114.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 458.146484375, + "entries": 696114.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 2902.28515625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 2406.30078125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 2405.95703125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 2405.78125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 2405.94921875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 2406.7421875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 2410.38671875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 4438.51171875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 2276.66015625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 2276.31640625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 2277.54296875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 2277.046875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 2277.140625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 2276.43359375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2239.640625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 2417.109375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 2263.484375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2015.1953125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 2404.41015625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 2281.12109375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2246.15625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 4020.671875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 4069.1796875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 4153.35546875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 4260.5078125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 4111.59375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 123.30859375, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 12637.7080078125, + "entries": 7563796.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 12396.3603515625, + "entries": 7563796.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 14582.58203125, + "entries": 7563796.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 4432.26953125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 4413.2578125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 4455.33984375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 4477.14453125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 546.3046875, + "entries": 1273985, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 830.5625, + "entries": 1273985, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 634.796875, + "entries": 1273985, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 244.25, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1922.96875, + "entries": 696114.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1846.39453125, + "entries": 696114.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 626.4443359375, + "entries": 696114.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 356.21484375, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 4161.7421875, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 4257.3359375, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 5439.51953125, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 4675.693359375, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 3668.345703125, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 3643.017578125, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 5363.85546875, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 4409.896484375, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 2767.05078125, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 4519.705078125, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 4357.693359375, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 4169.998046875, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 3999.673828125, + "entries": 2083583.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 232.69921875, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 834.15234375, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 943.4560546875, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1009.87109375, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 982.1708984375, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 824.26953125, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 824.56640625, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 836.1025390625, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 789.435546875, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 692.25, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 980.4716796875, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 681.611328125, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1213.81640625, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 849.9609375, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 795.6220703125, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 863.4169921875, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 678.2734375, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 846.8984375, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 782.80859375, + "entries": 249439.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 415.8984375, + "entries": 249439.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 483.6533203125, + "entries": 249439.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 487.09765625, + "entries": 249439.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 354.3408203125, + "entries": 249439.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 391.916015625, + "entries": 249439.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 392.4619140625, + "entries": 249439.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 486.216796875, + "entries": 249439.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 451.953125, + "entries": 249439.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 410.6845703125, + "entries": 249439.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 2403.1328125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 2318.59765625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 2150.4140625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 692.4375, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 13577.275390625, + "entries": 6640615.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 11818.1865234375, + "entries": 6640615.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 11592.4951171875, + "entries": 6640615.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 8364.05859375, + "entries": 6640615.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1085.25, + "entries": 6640615.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 10148.6875, + "entries": 6640615.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 2185.04296875, + "entries": 6640615.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 1816.9208984375, + "entries": 6640615.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1393.220703125, + "entries": 6640615.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 2928.3974609375, + "entries": 6640615.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 39.29296875, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 7080.587890625, + "entries": 3820674.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 1721.8671875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1486.89453125, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1296.37890625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 3466.78515625, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1424.375, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2007.82421875, + "entries": 1273985, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 820.01953125, + "entries": 1273985, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 804.7109375, + "entries": 1273985, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 505.1796875, + "entries": 1273985, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 4402.044921875, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 4233.69140625, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 4380.50390625, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 4240.345703125, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2575.095703125, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1638.943359375, + "entries": 1866714.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 546.66796875, + "entries": 719249.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1802.017578125, + "entries": 7136230.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1048.12890625, + "entries": 1959549.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 597.337890625, + "entries": 932795.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 340.9580078125, + "entries": 249439.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3805.490234375, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 5189.16796875, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 4211.126953125, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 3146.865234375, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 5156.57421875, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 4325.220703125, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4717.5625, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4689.265625, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 5405.73046875, + "entries": 1866714.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1289.03515625, + "entries": 1866714.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_AND": { + "name": "L1_BPTX_LUT1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B1": { + "name": "L1_BPTX_LUT1_B1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B2": { + "name": "L1_BPTX_LUT1_B2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_OR": { + "name": "L1_BPTX_LUT1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_AND": { + "name": "L1_BPTX_LUT2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B1NotB2": { + "name": "L1_BPTX_LUT2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B2NotB1": { + "name": "L1_BPTX_LUT2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_NotOR": { + "name": "L1_BPTX_LUT2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_AND": { + "name": "L1_BPTX_TRIG2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B1NotB2": { + "name": "L1_BPTX_TRIG2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B2NotB1": { + "name": "L1_BPTX_TRIG2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_NotOR": { + "name": "L1_BPTX_TRIG2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.8203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.54296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_AND": { + "name": "L1_BRIL_TRIG3_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_delayedAND": { + "name": "L1_BRIL_TRIG3_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_ref": { + "name": "L1_BRIL_TRIG3_ref", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.6171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.6171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.6171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.1015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.4453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.2734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 195.93359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.62109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.40234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.32421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.85546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.71875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.91796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 175.02734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.33203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.24609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 213.4609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 213.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.4375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.4921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.6171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 230.00390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.7109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.7109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 224.66015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.23828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.29296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.89453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.03125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.90234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.94921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.19921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.94921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.12109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.70703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.65234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.5859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.90234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.89453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.93359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.20703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.88671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.31640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 229.625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.92578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.0078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.17578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.9296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.81640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.13671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.48046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.5546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.92578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 142.30078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.23828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.15625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.9296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.1015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.1015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.1015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.1015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.1015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.9296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.9296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.9296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.25, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.34765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.61328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 159.72265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 183.015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.30859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.3515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.69140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 195.25, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.84375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.7578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.98046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.66015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.26171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.48046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.83203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.89453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.47265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.28515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 206.4921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.8359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.03125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.36328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 192.42578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.2421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.4921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.8359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.42578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.6328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 216.203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 225.35546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.0390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 219.53515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.40625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.13671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.5546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 223.7421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.00390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.6171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.12890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.57421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.5546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.9375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.15234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.44921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.9765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.25, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.80859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.5, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 216.87109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.9765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.30078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 213.54296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.65625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.26953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.97265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.01953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.8046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.51171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.00390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.72265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.74609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 159.125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.48046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.86328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 189.6015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.09375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.0625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.0625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.09765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.94140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.0, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.3359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.7421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.26953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.0, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.1015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 225.2109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.96484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.0, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.98828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.15234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.62890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.9765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.25390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 180.5, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.96484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.06640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.69140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.32421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.08984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.19921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.8828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.09765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.59375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.80078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.83984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.44921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.66015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.8828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.37890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.28125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.84375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 98.25, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.56640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.68359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.6875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.69140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 86.38671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.56640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.69140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.71484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.33984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.3203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.1796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.28125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.08203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.0859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.8828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.63671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.90625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.4453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.41015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.3125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 99.28125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.59765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.0234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.71484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.71875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.72265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 87.41796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.59765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.72265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.74609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.37109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.3515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 46.2109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.1171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.9140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.66796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.91015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.05078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.8203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.16015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.5078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.9296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.99609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.96875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.53515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.65234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.94140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.4921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.07421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.58203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.28125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.41015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.08203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.90234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.74609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.92578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.75390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.10546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.58984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.46875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.09375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.94921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.37890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.78125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.57421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.59375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.43359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.45703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.8984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.42578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.6015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.79296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.30859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.41796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.8671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.30859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.32421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.34375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.48828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.94140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.71484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.31640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.9375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 125.73828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 168.26953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.85546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.76171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.83984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.39453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.77734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.16796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.03515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.90625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.45703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.88671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.62890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.97265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.28125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.78125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.58203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.33203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.64453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.63671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.53515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.40234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.21484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.53125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.15625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.61328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.80078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.8671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.41015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.42578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.44140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.16796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.55078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.78515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.92578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.78125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.34375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.53515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.58203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.7578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.98046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.07421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.02734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.12890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.87890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.91015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.58984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.5703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.35546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.37109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.94140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.27734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.55078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.01953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.1796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.96875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.97265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.05078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.60546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.64453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.87109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.76953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.17578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.46484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.61328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.50390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.84765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.20703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.41796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.45703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.44921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.26171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.66015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.79296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.16015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.7734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.4140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.36328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.80859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.53515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.96484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.75, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.76171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.58984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.02734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.39453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.97265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.73828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.85546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.36328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 129.53125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.91015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.04296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.94921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.06640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.10546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.61328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.14453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.58984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.34765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.30859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.28125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.25390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.00390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.87890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.73828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.78125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.94140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.26171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.15625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.46875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.59375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.89453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.96875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.37109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.05859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.55859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.00390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.9140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.66015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.73046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.33203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.12890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.37109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.31640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.49609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.43359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.45703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.46875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 170.33984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 183.7265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 183.296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 194.765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 200.96484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 148.46875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 173.4453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.03125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.05859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.8828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.78125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.42578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.16015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.67578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.82421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.20703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.08203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.94921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.75390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.8828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.06640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.65234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.52734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.76171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.94921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.12890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.05859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.06640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.07421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.63671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.58203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.9296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.8671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.62890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.65234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.68359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.70703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.46875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.4296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.55078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.62890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.76953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.89453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.40234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.60546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.87890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.83984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.66796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.25390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.04296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.60546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.33984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.98046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.41015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.40234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.94921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.97265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.53125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.94921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.84765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.53125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.10546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.71875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.8828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.11328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.10546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.80078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.9140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.36328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.98828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.23046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1953125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.6015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.55078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.55859375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.48828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.37890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.90234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.2265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.01171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.82421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.30078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0546875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.45703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.1875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.44140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.08203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6796875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.59375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.28515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.03125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.68359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.57421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.89453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.43359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.23828125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.46875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.2421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.53125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.30078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.08203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.140625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.76171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.96484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.7734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.7734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7109375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.58984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.79296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.8125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.59765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.91015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.78515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.99609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.2734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.6171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3046875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9921875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.8203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.8203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1328125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.4765625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5078125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9609375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2890625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.09375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.89453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.43359375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.33984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.57421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.2578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.29296875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.28515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.265625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.81640625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.6875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.63671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.34375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.91015625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.57421875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.01171875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.02734375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6484375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain_BRIL": { + "name": "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2578125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain_copy": { + "name": "HLT_ZeroBias_FirstBXAfterTrain_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.2158203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.720703125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.63671875, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0390625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.533203125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.40234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.39453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.39453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.39453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.39453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.40234375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.3984375, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.39453125, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.103515625, + "entries": 1273985, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 36.61328125, + "entries": 1273985, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 43.83203125, + "entries": 1273985, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 3459.41796875, + "entries": 1273985, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 9191.5068359375, + "entries": 87221.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 6740.09375, + "entries": 1273985, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 6704.859375, + "entries": 1273985, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 55609.2578125, + "entries": 6273473.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 7328.08984375, + "entries": 1273985, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 7358.953125, + "entries": 1273985, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 84044.3681640625, + "entries": 719249.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 150552.814453125, + "entries": 1268104.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1665.703125, + "entries": 41542.00000000001, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 33058.4013671875, + "entries": 1322326.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 318145.9775390625, + "entries": 7136230.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 20391.05078125, + "entries": 1273985, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 45577.458984375, + "entries": 608523.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 24309.07421875, + "entries": 1273985, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 9730.6396484375, + "entries": 280856.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 153847.029296875, + "entries": 1959549.0000000002, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 50392.205078125, + "entries": 932795.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 7455.1376953125, + "entries": 696114.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 37682.6953125, + "entries": 1273985, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 6695.7890625, + "entries": 1273985, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 6931.6875, + "entries": 1273985, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 4020.671875, + "entries": 1273985, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 4069.1796875, + "entries": 1273985, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 4153.35546875, + "entries": 1273985, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 4260.5078125, + "entries": 1273985, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 4111.59375, + "entries": 1273985, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 39739.958984375, + "entries": 7563796.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 4432.26953125, + "entries": 1273985, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 4413.2578125, + "entries": 1273985, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 4455.33984375, + "entries": 1273985, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 4477.14453125, + "entries": 1273985, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 546.3046875, + "entries": 1273985, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 830.5625, + "entries": 1273985, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 634.796875, + "entries": 1273985, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 55789.7421875, + "entries": 2083583.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 19877.0341796875, + "entries": 249439.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 6872.14453125, + "entries": 1273985, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 65601.97265625, + "entries": 6640615.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 7119.880859375, + "entries": 3820674.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 13028.85546875, + "entries": 1273985, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 63911.84375, + "entries": 1866714.9999999998, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 27356.1962890625, + "entries": 1273985, + "subs": [ + "L1_AlwaysTrue", + "L1_BPTX_LUT1_AND", + "L1_BPTX_LUT1_B1", + "L1_BPTX_LUT1_B2", + "L1_BPTX_LUT1_OR", + "L1_BPTX_LUT2_AND", + "L1_BPTX_LUT2_B1NotB2", + "L1_BPTX_LUT2_B2NotB1", + "L1_BPTX_LUT2_NotOR", + "L1_BPTX_TRIG2_AND", + "L1_BPTX_TRIG2_B1NotB2", + "L1_BPTX_TRIG2_B2NotB1", + "L1_BPTX_TRIG2_NotOR", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BRIL_TRIG3_AND", + "L1_BRIL_TRIG3_delayedAND", + "L1_BRIL_TRIG3_ref", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_ETT40_BptxAND" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2371.9453125, + "entries": 1273985, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 32.4453125, + "entries": 1273985, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 33.6484375, + "entries": 1273985, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 24164.7109375, + "entries": 1273985, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "HLT_ZeroBias_FirstBXAfterTrain_copy", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 33.6484375, + "entries": 1273985, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 21, + "allsize": 0.150390625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.150390625, + "entries": 21, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.150390625, + "entries": 21, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 2113, + "allsize": 2.2392578125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2412109375, + "entries": 2113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.2958984375, + "entries": 2113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2314453125, + "entries": 2113, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.23046875, + "entries": 2113, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.240234375, + "entries": 2113, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2412109375, + "entries": 2113, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.2958984375, + "entries": 2113, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2314453125, + "entries": 2113, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.23046875, + "entries": 2113, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.240234375, + "entries": 2113, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30519/Charmonium_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30519/Charmonium_doc.html new file mode 100644 index 000000000..f7bf594df --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30519/Charmonium_doc.html @@ -0,0 +1,1659 @@ + + + + Documentation for 00FA3E09-0BB7-FA4B-9F0B-B2D1EDAB9A76.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30519/Charmonium_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30519/Charmonium_doc.json new file mode 100644 index 000000000..2d3fa94f5 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30519/Charmonium_doc.json @@ -0,0 +1,14144 @@ +{ + "filename": "00FA3E09-0BB7-FA4B-9F0B-B2D1EDAB9A76.root", + "filesize": 1095785.3349609375, + "trees": { + "Events": { + "entries": 1608195, + "allsize": 1091194.5302734375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 33.6552734375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 38.7958984375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 4317.4501953125, + "entries": 1608195, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 54.3623046875, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 98.7421875, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 100.34375, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 101.3203125, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 101.30078125, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 101.38671875, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 95.04296875, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 93.0546875, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 100.52734375, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 94.86328125, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 103.03125, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 98.81640625, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 101.9765625, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 98.17578125, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 98.078125, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 103.63671875, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 101.33203125, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 106.57421875, + "entries": 5475.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 85.515625, + "entries": 5475.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 88.14453125, + "entries": 5475.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 83.015625, + "entries": 5475.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 90.25, + "entries": 5475.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 88.12109375, + "entries": 5475.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 84.52734375, + "entries": 5475.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 89.16015625, + "entries": 5475.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 88.58203125, + "entries": 5475.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 89.6875, + "entries": 5475.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 3017.1318359375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 2802.59765625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2530.6376953125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 3026.14453125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 2801.9970703125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2452.619140625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 827.7236328125, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 7130.5419921875, + "entries": 8433037.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 19282.9013671875, + "entries": 8433037.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 12668.6728515625, + "entries": 8433037.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 19348.9794921875, + "entries": 8433037.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 13452.3466796875, + "entries": 8433037.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 3571.9580078125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 5511.658203125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 3637.9521484375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 5521.93359375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 237.7041015625, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 683.625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 683.96484375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 325.34765625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 324.80859375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 799.9296875, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 341.44140625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 342.7109375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 336.77734375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 338.296875, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 835.59375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 624.80078125, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 845.66796875, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 629.66796875, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 884.14453125, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 814.7734375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 644.4765625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 859.640625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 597.3828125, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 806.4609375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 664.13671875, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 691.45703125, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 788.265625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1006.54296875, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 877.8125, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 932.03515625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 955.08984375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1015.484375, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 943.9765625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 860.625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 1049.59765625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 700.17578125, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 698.765625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 725.57421875, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 797.69140625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 694.47265625, + "entries": 210572.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 377.0078125, + "entries": 210572.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 365.59375, + "entries": 210572.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 433.6484375, + "entries": 210572.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 377.140625, + "entries": 210572.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 371.859375, + "entries": 210572.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 381.328125, + "entries": 210572.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 702.359375, + "entries": 210572.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 626.93359375, + "entries": 210572.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 321.25, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 313.375, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 354.1484375, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 411.12109375, + "entries": 210572.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 355.4296875, + "entries": 210572.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 324.68359375, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 331.33203125, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 335.23828125, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 329.39453125, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 336.72265625, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 339.3984375, + "entries": 210572.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 312.14453125, + "entries": 210572.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 61.6201171875, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 106.671875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 120.79296875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 122.28515625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 120.65234375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 121.47265625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 121.328125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 121.7109375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 116.0546875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 116.37109375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 115.22265625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 115.2578125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 116.6484375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 116.64453125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 115.9375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 115.32421875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 116.640625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 116.4296875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 119.4375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 118.9375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 122.55078125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 123.21484375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 122.6015625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 122.4375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 123.26171875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 117.4453125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 111.0546875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 107.2734375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 96.12890625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 120.62890625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 123.01953125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 122.4609375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 122.75390625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 125.58984375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 125.0703125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 124.82421875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 120.06640625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 124.8125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 123.9453125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 123.890625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 120.3046875, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 123.55859375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 114.203125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 109.18359375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 118.15625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 118.15625, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 117.86328125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 117.49609375, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 110.01953125, + "entries": 11156.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 87.0078125, + "entries": 11156.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 94.765625, + "entries": 11156.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 95.28125, + "entries": 11156.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 93.8671875, + "entries": 11156.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 94.4296875, + "entries": 11156.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 99.21875, + "entries": 11156.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 57.6484375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 113.37109375, + "entries": 6644.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 106.66015625, + "entries": 6644.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 106.8125, + "entries": 6644.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 103.43359375, + "entries": 6644.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 112.1875, + "entries": 6644.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 85.8671875, + "entries": 6644.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 498.4384765625, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3862.5, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3804.12890625, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 4093.4609375, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 3057.65234375, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2570.68359375, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 4120.3671875, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 3389.4765625, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2728.12890625, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1810.9453125, + "entries": 1432989.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1101.26171875, + "entries": 1432989.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1075.19921875, + "entries": 1432989.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1141.83203125, + "entries": 1432989.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 912.78125, + "entries": 1432989.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 728.875, + "entries": 1432989.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 835.28125, + "entries": 1432989.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 762.369140625, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 4902.353515625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 8588.4150390625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 8044.1962890625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 7997.3388671875, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 7846.2060546875, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 11236.4658203125, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 9967.0380859375, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 10493.6123046875, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 9473.0, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 1920.51171875, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 7017.599609375, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 7004.1884765625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 13533.5537109375, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 2517.1259765625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 2517.4306640625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 10090.033203125, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 3752.873046875, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 8982.2607421875, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 8039.39453125, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 7477.3642578125, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 13409.1474609375, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 9853.30078125, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 10838.533203125, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 7447.2998046875, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 8807.6416015625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 8927.744140625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 6911.5380859375, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 8914.119140625, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 6898.0263671875, + "entries": 5655309.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 1695.595703125, + "entries": 5655309.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1392.529296875, + "entries": 5655309.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1423.4990234375, + "entries": 5655309.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 1594.4580078125, + "entries": 5655309.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1801.6298828125, + "entries": 5655309.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2357.021484375, + "entries": 5655309.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2001.080078125, + "entries": 5655309.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 1690.60546875, + "entries": 5655309.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2328.35546875, + "entries": 5655309.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 2773.556640625, + "entries": 5655309.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 4218.3515625, + "entries": 5655309.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1156.314453125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 451.0791015625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 454.05078125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 456.3017578125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 3015.70703125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 910.3837890625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 3311.8173828125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 2957.8720703125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 3062.8603515625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 3172.6572265625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 3434.763671875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 328.71484375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 2236.11328125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 550.0703125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1564.5546875, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1577.10546875, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1124.58203125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1609.94140625, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1125.2734375, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1527.37109375, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 2120.05078125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1202.8203125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 1690.7265625, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 969.5703125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 1508.2578125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1713.1328125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1359.265625, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 1677.16015625, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 2157.59375, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 2032.5703125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 1429.8359375, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1339.15234375, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1180.55078125, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 2039.87109375, + "entries": 484410.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 605.734375, + "entries": 484410.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 524.87109375, + "entries": 484410.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 605.5625, + "entries": 484410.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 516.85546875, + "entries": 484410.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 561.80078125, + "entries": 484410.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 3126.583984375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 3126.134765625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2015.1494140625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 2520.9384765625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2014.6416015625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 3619.8818359375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 5556.64453125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 2971.720703125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2467.7822265625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2460.462890625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 157.0224609375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 867.2109375, + "entries": 258800.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 922.1044921875, + "entries": 258800.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 922.0107421875, + "entries": 258800.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 287.396484375, + "entries": 258800.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 288.1904296875, + "entries": 258800.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 811.3076171875, + "entries": 258800.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 337.6826171875, + "entries": 258800.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 364.1923828125, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 8103.4609375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 4629.36328125, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 8097.0, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 8310.21484375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 4990.5390625, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 8739.7109375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 7834.3984375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 5235.26171875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 6202.48046875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1489.62109375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 9624.45703125, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 7016.02734375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 10964.96875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 9476.33984375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 11923.91015625, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 8738.19921875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 12670.63671875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 5094.578125, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 6985.83984375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 7779.10546875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 3921.04296875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 4824.32421875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1616.84765625, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 7694.8046875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 7232.84375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1743.20703125, + "entries": 3391031.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2237.85546875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 2231.015625, + "entries": 3391031.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 2739.6796875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1751.234375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1315.25, + "entries": 3391031.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1259.2890625, + "entries": 3391031.9999999995, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1415.640625, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1092.48046875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1011.02734375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1148.07421875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1142.140625, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1123.79296875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1092.578125, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2160.6328125, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1139.296875, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1218.71484375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1431.5234375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 2018.7578125, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1360.51171875, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 1284.66015625, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 946.421875, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 2045.23046875, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1698.44140625, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1146.16015625, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1391.87109375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1386.51953125, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1583.6796875, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1138.46484375, + "entries": 3391031.9999999995, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 214.4638671875, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 543.84765625, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 544.78515625, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 277.73046875, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 277.03515625, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 449.47265625, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 537.20703125, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 703.39453125, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 522.86328125, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 502.87890625, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 589.46875, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 597.94140625, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 853.921875, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 768.38671875, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 701.5078125, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 813.8828125, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 579.83203125, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 596.1484375, + "entries": 163830.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 276.12890625, + "entries": 163830.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 298.8046875, + "entries": 163830.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 305.04296875, + "entries": 163830.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 318.0234375, + "entries": 163830.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 352.9296875, + "entries": 163830.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 276.0234375, + "entries": 163830.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 480.15234375, + "entries": 163830.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 293.515625, + "entries": 163830.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 300.40234375, + "entries": 163830.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 296.83984375, + "entries": 163830.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 284.80859375, + "entries": 163830.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 289.6171875, + "entries": 163830.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 296.13671875, + "entries": 163830.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 266.7578125, + "entries": 163830.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 217.15234375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1736.6416015625, + "entries": 640309.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1928.8798828125, + "entries": 640309.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 405.9375, + "entries": 640309.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 406.7529296875, + "entries": 640309.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 516.53515625, + "entries": 640309.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 520.1259765625, + "entries": 640309.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 555.2841796875, + "entries": 640309.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 406.583984375, + "entries": 640309.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 3607.150390625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 3001.7412109375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 3001.4306640625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 3001.4091796875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 3002.7158203125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 3000.3349609375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 3006.7470703125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 5563.9716796875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 2828.11328125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 2827.802734375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 2827.1171875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 2830.853515625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 2827.015625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 2827.224609375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2702.7421875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 3017.484375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 2802.4697265625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2464.138671875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 3000.4052734375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 2819.15234375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2680.6884765625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 4994.4609375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 5039.9921875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 5300.09765625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 5418.2880859375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 5236.2900390625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 185.099609375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 15684.3359375, + "entries": 9459395.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 15462.6875, + "entries": 9459395.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 17271.27734375, + "entries": 9459395.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 5445.3134765625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 4197.4599609375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 5534.19140625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 5485.5859375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 534.39453125, + "entries": 1608195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1019.8720703125, + "entries": 1608195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 698.2392578125, + "entries": 1608195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 217.462890625, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1725.49609375, + "entries": 640309.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1664.62890625, + "entries": 640309.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 555.7158203125, + "entries": 640309.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 51.3115234375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 114.359375, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 114.609375, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 117.484375, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 115.8359375, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 108.98828125, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 108.88671875, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 117.8046875, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 113.203125, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 103.32421875, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 114.13671875, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 112.65625, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 110.93359375, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 109.62109375, + "entries": 12227.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 233.755859375, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 708.4140625, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 815.9296875, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 864.23046875, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 843.0703125, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 719.8984375, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 720.859375, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 682.7265625, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 608.9453125, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 540.3984375, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 842.671875, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 579.66015625, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 969.91796875, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 727.37890625, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 700.43359375, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 725.4375, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 733.60546875, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 714.078125, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 659.6875, + "entries": 205275.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 375.22265625, + "entries": 205275.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 421.5234375, + "entries": 205275.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 399.1796875, + "entries": 205275.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 324.203125, + "entries": 205275.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 353.19921875, + "entries": 205275.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 349.0625, + "entries": 205275.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 433.48046875, + "entries": 205275.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 428.87109375, + "entries": 205275.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 380.24609375, + "entries": 205275.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 2992.4619140625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 2819.298828125, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 2532.3701171875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 195.513671875, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 746.07421875, + "entries": 237542.00000000003, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 764.16796875, + "entries": 237542.00000000003, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 765.53125, + "entries": 237542.00000000003, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 505.0078125, + "entries": 237542.00000000003, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 216.42578125, + "entries": 237542.00000000003, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 606.41796875, + "entries": 237542.00000000003, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 279.046875, + "entries": 237542.00000000003, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 265.06640625, + "entries": 237542.00000000003, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 283.25390625, + "entries": 237542.00000000003, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 346.86328125, + "entries": 237542.00000000003, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 34.744140625, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 8798.3125, + "entries": 4824412.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2177.0810546875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1940.369140625, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1714.302734375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 4345.052734375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1817.1630859375, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2337.341796875, + "entries": 1608195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1008.4755859375, + "entries": 1608195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 990.0732421875, + "entries": 1608195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 451.3076171875, + "entries": 1608195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 2891.9765625, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 2839.66015625, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 2880.33984375, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 2843.37890625, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 1883.04296875, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1231.6953125, + "entries": 1130953.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 312.3984375, + "entries": 210572.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1796.28515625, + "entries": 5655309.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1211.3359375, + "entries": 3391031.9999999995, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 266.98828125, + "entries": 163830.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 312.32421875, + "entries": 205275.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 2586.3203125, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 3438.96875, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 2787.859375, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2086.02734375, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 3430.046875, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 2844.75, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 3111.078125, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 3091.47265625, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 3546.9375, + "entries": 1130953.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1003.97265625, + "entries": 1130953.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.8486328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5380859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.9169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.76171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.1630859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.8330078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.2158203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.4892578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.6845703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.5830078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.5908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.2080078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3681640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.1025390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.4716796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.8544921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.4560546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.1240234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.4130859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.9755859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.3818359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.8671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.8671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.740234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.638671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5498046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5810546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5732421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.3525390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.0224609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.767578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.5234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.25, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 277.279296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.5791015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.353515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.5400390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.115234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.0146484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 230.201171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.14453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.1708984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 272.552734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 270.095703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 229.291015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 250.259765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.998046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.892578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.681640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.3798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.451171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.482421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.451171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.037109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.416015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.865234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.38671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.916015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.412109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.548828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.068359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.451171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.7802734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.451171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5380859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.451171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.451171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5380859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6455078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6533203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6142578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.9619140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.9189453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.4580078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.1455078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.7587890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.4521484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.2568359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.5146484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.287109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.607421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.1796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.271484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.6669921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.4326171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.216796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.1943359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.7978515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.8603515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.623046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.5556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.0791015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.267578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.658203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.87109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.841796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.998046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.814453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.5810546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.591796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.7578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.6533203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.3681640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.2568359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.1669921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.2373046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.34765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.60546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.4619140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.2978515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.9033203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.6826171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3486328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8291015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.9423828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.34375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.3408203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.4501953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.3017578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.2939453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8251953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.3642578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.7353515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.7666015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.6259765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.7666015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.2197265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.2626953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.142578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.708984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.40625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.2265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.853515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.69921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.501953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.09765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.240234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.7578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.884765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.591796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.40234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.728515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.50390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.947265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.8984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.263671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.0341796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.4013671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.7919921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.38671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.0146484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.8623046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9365234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.39453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.3193359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.21875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.57421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.6396484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.3837890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.6826171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.2412109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.2744140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.3974609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 180.5322265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.0732421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.3173828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.1201171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.9580078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.8310546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.447265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.00390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.9638671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.3056640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.4384765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.994140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.6552734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.2490234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.6806640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.9541015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.0166015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 239.564453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.4111328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.0322265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.6357421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.0224609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.568359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.0458984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.8935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 109.6484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.6279296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.1328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.6787109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.6298828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.2802734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.1416015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.7880859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 30.9697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.00390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.943359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.2646484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.8935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.90234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.400390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.7421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.65234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.0224609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.7646484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.8271484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 29.9169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.5, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.9775390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.8251953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 110.580078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.5595703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.6103515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.8671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.5615234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.2119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.0732421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.7197265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 31.9013671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 31.935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.056640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.8251953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.833984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.33203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.041015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.9541015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.6962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.7509765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.00390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.59375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3662109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0068359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9521484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.84765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.6884765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 208.7939453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9541015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.7841796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.28515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9814453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.513671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.732421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.533203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4853515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2158203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 196.80859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 171.94921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 260.9365234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5205078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.724609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.2177734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8193359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9111328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3662109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.4423828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.291015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.46875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.037109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.9970703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.177734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.939453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.02734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.068359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0224609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.060546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5830078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.701171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.701171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.6298828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.806640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.779296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6123046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6162109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6123046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.662109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5791015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4736328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.6103515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.818359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3330078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8056640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6103515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6064453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6142578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6142578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6416015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.51953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.75, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.9296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.3095703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.017578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7900390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.74609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2099609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.755859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.123046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.9052734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.6044921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.0302734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9677734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.439453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5537109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5458984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.93359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0224609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.0966796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3017578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.7158203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.0986328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7666015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8486328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.931640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.00390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.3955078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.47265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.24609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.185546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5302734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.4482421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.1630859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.75, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.72265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.927734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0380859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8876953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7470703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.923828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3291015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3837890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.923828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.8037109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.44921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.9736328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.82421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.88671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.1748046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.025390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5888671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.580078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.099609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.2646484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5634765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.185546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.4921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.9287109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.095703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.16015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8701171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6904296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.486328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.091796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.4169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.185546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.283203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.283203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0419921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.794921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.392578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.3544921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.4130859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.478515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.330078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.369140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.982421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4013671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4013671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5419921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5654296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5888671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5849609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6552734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9521484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8271484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.076171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.107421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.111328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.166015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.416015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.291015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.705078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8486328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8720703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9189453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9462890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9423828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.62890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.7919921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.7880859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8427734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.7880859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6142578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.423828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4775390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.94921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.6181640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9443359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9482421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9404296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9365234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9560546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9521484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9990234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9404296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8505859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5185546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.958984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0439453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0478515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0361328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0205078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.05078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.775390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.7802734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.986328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3837890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.462890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4013671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8642578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8173828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.81640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5869140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.4931640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2939453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1611328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2197265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8525390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.248046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.220703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9716796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.9248046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.09375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.716796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.98046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.560546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9658203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4892578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5166015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5751953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.1171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.94140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5751953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2041015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5830078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5751953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2001953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5751953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.2236328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.68359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2685546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.423828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.423828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.427734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.19921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.42578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9208984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1865234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0166015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.771484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5986328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5830078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9580078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2900390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.7685546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.96875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2294921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.7265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0341796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.58984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6845703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2900390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2626953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5009765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.474609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0947265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0263671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.29296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0224609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6748046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2060546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.8427734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.60546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.099609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.369140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.3388671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.177734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.564453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.181640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.181640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.201171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.177734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.029296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.595703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.83984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.076171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.076171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.076171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3681640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.13671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7197265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7236328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.88671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.6640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8544921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8974609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6806640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.77734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 212.0830078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.537109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.83984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7392578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9482421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9326171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1005859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.2294921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8740234375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5751953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6376953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6220703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5791015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5107421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.802734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.802734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.302734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2080078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0224609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.041015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2763671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.431640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5830078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.35546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5107421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6435546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9541015625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8759765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5869140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.59375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.904296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.517578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4013671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8857421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9638671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3154296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2783203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0458984375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0361328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4970703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.12109375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3330078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.1376953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0908203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3720703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.2236328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.1650390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9150390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.01953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3408203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.177734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.771484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.181640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.748046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.228515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 181.4384765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.935546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.0224609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.53515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.75390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.55859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.96875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7177734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.505859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6591796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3408203125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.49609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.49609375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9619140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1259765625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2529296875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.8798828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.330078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.396484375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8564453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.939453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0078125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.728515625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.73046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.73046875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8857421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8857421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8857421875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7119140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.185546875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.8359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4638671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8427734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1220703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0869140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.76171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.072265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.693359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8486328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5380859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.1591796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.1591796875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5380859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5380859375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.00390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8486328125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.7802734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9169921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4697265625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.419921875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1962890625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.556640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2275390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6220703125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6181640625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.76953125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.76171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.76171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.076171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.076171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.076171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.076171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7392578125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7314453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7734375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.76171875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.39453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.39453125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.00390625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.48828125, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8671875, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.068359375, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.19140625, + "entries": 1608195, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 33.6552734375, + "entries": 1608195, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 38.7958984375, + "entries": 1608195, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 4317.4501953125, + "entries": 1608195, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 2539.5693359375, + "entries": 5475.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8350.3671875, + "entries": 1608195, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 8280.7607421875, + "entries": 1608195, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 72711.166015625, + "entries": 8433037.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 9083.6162109375, + "entries": 1608195, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 9159.8857421875, + "entries": 1608195, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 33371.4267578125, + "entries": 210572.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 6311.9833984375, + "entries": 11156.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 685.98046875, + "entries": 6644.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 35731.0126953125, + "entries": 1432989.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 259243.6494140625, + "entries": 5655309.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 22383.8076171875, + "entries": 1608195, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 36879.109375, + "entries": 484410.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 29879.9404296875, + "entries": 1608195, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 8756.2294921875, + "entries": 258800.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 224025.6572265625, + "entries": 3391031.9999999995, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 14676.9404296875, + "entries": 163830.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 6693.8935546875, + "entries": 640309.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 46856.3701171875, + "entries": 1608195, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8284.0927734375, + "entries": 1608195, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8500.24609375, + "entries": 1608195, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 4994.4609375, + "entries": 1608195, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 5039.9921875, + "entries": 1608195, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 5300.09765625, + "entries": 1608195, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 5418.2880859375, + "entries": 1608195, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 5236.2900390625, + "entries": 1608195, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 48603.400390625, + "entries": 9459395.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 5445.3134765625, + "entries": 1608195, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 4197.4599609375, + "entries": 1608195, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 5534.19140625, + "entries": 1608195, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 5485.5859375, + "entries": 1608195, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 534.39453125, + "entries": 1608195, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1019.8720703125, + "entries": 1608195, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 698.2392578125, + "entries": 1608195, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 1513.1552734375, + "entries": 12227.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 17168.412109375, + "entries": 205275.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 8344.130859375, + "entries": 1608195, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 4973.369140625, + "entries": 237542.00000000003, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 8833.056640625, + "entries": 4824412.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 16329.859375, + "entries": 1608195, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 42948.8349609375, + "entries": 1130953.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 14486.9736328125, + "entries": 1608195, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_ETT40_BptxAND" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2165.03125, + "entries": 1608195, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 29.9169921875, + "entries": 1608195, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 31.00390625, + "entries": 1608195, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 20036.58984375, + "entries": 1608195, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 31.00390625, + "entries": 1608195, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 8, + "allsize": 0.099609375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.099609375, + "entries": 8, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.099609375, + "entries": 8, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1059, + "allsize": 1.7861328125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.1982421875, + "entries": 1059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.9794921875, + "entries": 1059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2041015625, + "entries": 1059, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.19921875, + "entries": 1059, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.205078125, + "entries": 1059, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.1982421875, + "entries": 1059, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.9794921875, + "entries": 1059, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2041015625, + "entries": 1059, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.19921875, + "entries": 1059, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.205078125, + "entries": 1059, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30520/DisplacedJet_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30520/DisplacedJet_doc.html new file mode 100644 index 000000000..f2b66147e --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30520/DisplacedJet_doc.html @@ -0,0 +1,1674 @@ + + + + Documentation for 13286D5C-EB1B-514B-BBD3-B83A62C68C51.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrain_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrain_BRILBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_refBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30520/DisplacedJet_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30520/DisplacedJet_doc.json new file mode 100644 index 000000000..f649a2371 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30520/DisplacedJet_doc.json @@ -0,0 +1,14294 @@ +{ + "filename": "13286D5C-EB1B-514B-BBD3-B83A62C68C51.root", + "filesize": 1520661.5078125, + "trees": { + "Events": { + "entries": 1367896, + "allsize": 1515799.3818359375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 39.859375, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 50.44140625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 3747.71875, + "entries": 1367896, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 210.90234375, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 625.150390625, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 740.06640625, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 643.025390625, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 644.068359375, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 647.37109375, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 603.681640625, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 559.787109375, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 746.03515625, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 496.490234375, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 859.044921875, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 654.470703125, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 623.646484375, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 649.470703125, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 630.138671875, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 694.1953125, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 639.58984375, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 819.12890625, + "entries": 168635.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 350.201171875, + "entries": 168635.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 396.375, + "entries": 168635.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 304.873046875, + "entries": 168635.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 410.046875, + "entries": 168635.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 365.671875, + "entries": 168635.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 303.611328125, + "entries": 168635.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 383.283203125, + "entries": 168635.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 376.033203125, + "entries": 168635.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 372.044921875, + "entries": 168635.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 2591.03515625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 2413.69140625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2118.40234375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 2599.2890625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 2414.80859375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2066.30078125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 712.171875, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 5983.28125, + "entries": 6558794.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 15463.1416015625, + "entries": 6558794.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 9990.4189453125, + "entries": 6558794.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 15535.9150390625, + "entries": 6558794.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 10819.7138671875, + "entries": 6558794.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 3095.796875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 4754.59765625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 3092.9453125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 4752.2109375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 434.1640625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 2637.44921875, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 2633.3125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 790.1640625, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 790.13671875, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3093.943359375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1359.46484375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1352.474609375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1286.06640625, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 1292.1328125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3264.546875, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2229.943359375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3301.384765625, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2251.30078125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 3834.76953125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3126.09375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2361.70703125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 3453.546875, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 2445.12890625, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3126.158203125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2537.013671875, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2592.15625, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 3114.740234375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4739.669921875, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4269.146484375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 3606.337890625, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 3763.294921875, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 4796.083984375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4490.783203125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 3454.42578125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 4783.263671875, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 2693.173828125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 2702.837890625, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 2757.64453125, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 3043.72265625, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2496.271484375, + "entries": 1145618.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 995.724609375, + "entries": 1145618.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 888.658203125, + "entries": 1145618.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1317.560546875, + "entries": 1145618.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 996.84765625, + "entries": 1145618.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1129.55859375, + "entries": 1145618.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1045.90625, + "entries": 1145618.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 2560.89453125, + "entries": 1145618.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 2268.92578125, + "entries": 1145618.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 760.248046875, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 696.8984375, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 878.435546875, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1223.513671875, + "entries": 1145618.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 907.498046875, + "entries": 1145618.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 706.9609375, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 721.265625, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 756.201171875, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 721.80859375, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 745.18359375, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 785.287109375, + "entries": 1145618.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 695.423828125, + "entries": 1145618.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 387.94140625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1355.701171875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 2386.69921875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 2583.4609375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 2347.53515625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 2495.546875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 2446.26953125, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 2441.44140625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 2232.935546875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 2324.748046875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 2296.021484375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 2176.435546875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 2324.75, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 2225.68359375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 2311.958984375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 2175.810546875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 2314.16796875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 2190.84765625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 2505.07421875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2221.90625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 2342.1875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 2593.462890625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 2528.388671875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 2524.248046875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 2932.171875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 2338.185546875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 2163.7890625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1904.888671875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1228.314453125, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 2290.44140625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 2556.87890625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 2478.13671875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 2496.78125, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 2625.466796875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 2565.298828125, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 2538.576171875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2210.515625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 2610.880859375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 2520.083984375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 2524.841796875, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 2366.783203125, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 2910.53515625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 2155.236328125, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1636.53515625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 2373.193359375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 2370.990234375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 2367.099609375, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 2364.072265625, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1560.689453125, + "entries": 946669.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 695.1015625, + "entries": 946669.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 931.193359375, + "entries": 946669.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 930.615234375, + "entries": 946669.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 882.697265625, + "entries": 946669.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 823.599609375, + "entries": 946669.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1327.03125, + "entries": 946669.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 68.36328125, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 138.591796875, + "entries": 9001.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 129.958984375, + "entries": 9001.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 129.880859375, + "entries": 9001.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 126.05859375, + "entries": 9001.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 136.5234375, + "entries": 9001.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 102.810546875, + "entries": 9001.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 498.3984375, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4430.859375, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4357.708984375, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 4627.4296875, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 3614.345703125, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2983.107421875, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 4641.984375, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 3787.931640625, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3441.556640625, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2229.865234375, + "entries": 1635441.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1167.638671875, + "entries": 1635441.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1325.638671875, + "entries": 1635441.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1190.4609375, + "entries": 1635441.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1005.58203125, + "entries": 1635441.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 742.240234375, + "entries": 1635441.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 987.703125, + "entries": 1635441.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 717.515625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 7358.55859375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 15383.576171875, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 14626.525390625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 13261.017578125, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 13767.509765625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 18647.197265625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 15349.962890625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 17184.787109375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 16147.046875, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 3288.35546875, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 12222.40234375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 11398.353515625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 22352.646484375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 3510.474609375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 3515.599609375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 17311.5625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 2505.21875, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 14154.447265625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 12854.22265625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 12475.306640625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 21955.564453125, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 17213.265625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 15960.55078125, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 15344.318359375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 13587.677734375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 13798.21484375, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 11434.216796875, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 13740.12890625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 11316.478515625, + "entries": 9729475.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2590.484375, + "entries": 9729475.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1597.3515625, + "entries": 9729475.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1690.666015625, + "entries": 9729475.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2078.779296875, + "entries": 9729475.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2079.763671875, + "entries": 9729475.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2017.29296875, + "entries": 9729475.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 1536.75, + "entries": 9729475.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2484.58984375, + "entries": 9729475.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2038.41015625, + "entries": 9729475.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 3560.19921875, + "entries": 9729475.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 7248.759765625, + "entries": 9729475.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1546.53515625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1488.1953125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1510.3515625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1527.30859375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 387.81640625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 154.61328125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 403.1796875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 385.33984375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 391.15234375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 1724.85546875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1748.59765625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 373.390625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 3400.07421875, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 994.478515625, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2310.390625, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2327.244140625, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1662.06640625, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2379.7578125, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1629.345703125, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2270.310546875, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 3204.4765625, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1760.837890625, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2492.044921875, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1589.107421875, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2274.984375, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3013.046875, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2568.76171875, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2480.123046875, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 3354.7265625, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 3050.05859375, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2155.3828125, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1963.46484375, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1817.224609375, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 3104.421875, + "entries": 769525.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 798.34375, + "entries": 769525.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 743.66796875, + "entries": 769525.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 798.080078125, + "entries": 769525.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 663.5859375, + "entries": 769525.9999999999, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 746.3359375, + "entries": 769525.9999999999, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 2691.13671875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 2690.421875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 1812.3359375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 2285.0703125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 1813.484375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 3126.51171875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 4739.82421875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 2567.359375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2116.99609375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2139.96484375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 116.953125, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 597.55859375, + "entries": 167372.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 634.583984375, + "entries": 167372.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 634.876953125, + "entries": 167372.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 220.681640625, + "entries": 167372.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 222.05859375, + "entries": 167372.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 565.349609375, + "entries": 167372.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 255.14453125, + "entries": 167372.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 321.359375, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1662.640625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1138.517578125, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 1671.12890625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1684.087890625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1172.265625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 1735.64453125, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1603.103515625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1212.912109375, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1345.359375, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 603.251953125, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2167.681640625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1946.751953125, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 2210.693359375, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2093.064453125, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 2261.236328125, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 1725.0625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 2263.802734375, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 1216.90625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 1562.5859375, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 1571.7265625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 889.37890625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 1192.986328125, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 575.212890625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 1254.697265625, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1341.607421875, + "entries": 507891.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 602.111328125, + "entries": 507891.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 742.083984375, + "entries": 507891.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 699.6640625, + "entries": 507891.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 802.728515625, + "entries": 507891.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 602.9375, + "entries": 507891.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 531.74609375, + "entries": 507891.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 519.662109375, + "entries": 507891.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 563.955078125, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 528.958984375, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 508.568359375, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 562.056640625, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 561.064453125, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 563.333984375, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 544.69921875, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 718.494140625, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 560.5859375, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 553.623046875, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 533.642578125, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 588.96875, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 528.025390625, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 472.9453125, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 469.791015625, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 578.01171875, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 557.294921875, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 559.107421875, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 536.40234375, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 537.8671875, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 557.73828125, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 563.673828125, + "entries": 507891.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 498.59765625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3370.58203125, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 3372.66015625, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 923.9375, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 922.12890625, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2147.9375, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 3175.62109375, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 4804.59375, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 3236.3125, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 2772.056640625, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 3111.73046875, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 3296.736328125, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 6818.998046875, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 6155.259765625, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 4792.06640625, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 6708.173828125, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3653.494140625, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3765.65234375, + "entries": 1683733.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 921.091796875, + "entries": 1683733.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 1051.814453125, + "entries": 1683733.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 1064.5546875, + "entries": 1683733.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1288.69921875, + "entries": 1683733.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1613.978515625, + "entries": 1683733.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 921.1796875, + "entries": 1683733.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 2543.2890625, + "entries": 1683733.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 997.029296875, + "entries": 1683733.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1024.05859375, + "entries": 1683733.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1005.73046875, + "entries": 1683733.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 842.974609375, + "entries": 1683733.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 867.150390625, + "entries": 1683733.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1001.74609375, + "entries": 1683733.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 780.177734375, + "entries": 1683733.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 154.9453125, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1150.990234375, + "entries": 409150.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1277.400390625, + "entries": 409150.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 297.06640625, + "entries": 409150.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 298.181640625, + "entries": 409150.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 372.33984375, + "entries": 409150.00000000006, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 374.162109375, + "entries": 409150.00000000006, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 395.759765625, + "entries": 409150.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 297.91015625, + "entries": 409150.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 3116.94140625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 2583.421875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 2583.046875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 2584.03515625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 2583.44921875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 2583.1953125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 2587.15625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 4751.97265625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 2432.765625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 2432.390625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 2432.8046875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 2434.17578125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 2434.890625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 2435.87890625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2255.2734375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 2595.30859375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 2415.890625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2113.8828125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 2582.44921875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 2431.0625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2271.984375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 4274.84375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 4329.31640625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 4536.75390625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 4615.3046875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 4372.15625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 110.34765625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 13495.9150390625, + "entries": 8152398.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 13277.3291015625, + "entries": 8152398.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 15527.54296875, + "entries": 8152398.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 4687.60546875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 4752.02734375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 4728.8203125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 4753.5, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 595.265625, + "entries": 1367896, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 893.44921875, + "entries": 1367896, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 697.18359375, + "entries": 1367896, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 155.3203125, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1155.1015625, + "entries": 409150.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1113.24609375, + "entries": 409150.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 396.240234375, + "entries": 409150.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 343.94140625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 2653.2734375, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 2698.046875, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 3485.8671875, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 3035.294921875, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2390.134765625, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 2374.279296875, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 3444.48046875, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 2877.517578125, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1872.5625, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 2914.162109375, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 2794.654296875, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 2664.275390625, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 2556.560546875, + "entries": 1257257.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 360.06640625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1944.828125, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 2251.087890625, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 2547.8828125, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 2389.919921875, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1958.41796875, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1960.078125, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1948.646484375, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1807.91015625, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1555.0859375, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 2383.814453125, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1513.5078125, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 3174.83203125, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 2010.3203125, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1696.861328125, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 2015.333984375, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1201.07421875, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1988.94921875, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1820.00390625, + "entries": 743055.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 789.7265625, + "entries": 743055.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 963.431640625, + "entries": 743055.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1018.5, + "entries": 743055.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 621.544921875, + "entries": 743055.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 614.6484375, + "entries": 743055.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 712.990234375, + "entries": 743055.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 936.6171875, + "entries": 743055.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 915.33984375, + "entries": 743055.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 637.556640625, + "entries": 743055.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 2580.359375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 2447.11328125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 2221.140625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 803.2890625, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 24404.80859375, + "entries": 12814049.000000002, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 22191.4326171875, + "entries": 12814049.000000002, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 21897.0810546875, + "entries": 12814049.000000002, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 15028.181640625, + "entries": 12814049.000000002, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1510.046875, + "entries": 12814049.000000002, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 18345.251953125, + "entries": 12814049.000000002, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 3355.62109375, + "entries": 12814049.000000002, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 2816.6962890625, + "entries": 12814049.000000002, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1579.939453125, + "entries": 12814049.000000002, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 4761.21484375, + "entries": 12814049.000000002, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 42.04296875, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 7595.1083984375, + "entries": 4103033.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 1830.65234375, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1574.453125, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1368.9765625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 3725.4921875, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1520.1640625, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2062.25, + "entries": 1367896, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 879.33203125, + "entries": 1367896, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 864.046875, + "entries": 1367896, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 499.26953125, + "entries": 1367896, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 3782.142578125, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 3645.796875, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 3764.37109375, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 3654.689453125, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2271.935546875, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1479.716796875, + "entries": 1541952.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 687.13671875, + "entries": 1145618.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1966.259765625, + "entries": 9729475.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 554.8984375, + "entries": 507891.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 765.93359375, + "entries": 1683733.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 585.849609375, + "entries": 743055.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3307.955078125, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 4442.65625, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 3600.626953125, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2689.341796875, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 4423.25, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 3696.732421875, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4051.296875, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4030.35546875, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 4621.5, + "entries": 1541952.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1154.140625, + "entries": 1541952.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_AND": { + "name": "L1_BPTX_LUT1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B1": { + "name": "L1_BPTX_LUT1_B1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B2": { + "name": "L1_BPTX_LUT1_B2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_OR": { + "name": "L1_BPTX_LUT1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_AND": { + "name": "L1_BPTX_LUT2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B1NotB2": { + "name": "L1_BPTX_LUT2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B2NotB1": { + "name": "L1_BPTX_LUT2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_NotOR": { + "name": "L1_BPTX_LUT2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_AND": { + "name": "L1_BPTX_TRIG2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B1NotB2": { + "name": "L1_BPTX_TRIG2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B2NotB1": { + "name": "L1_BPTX_TRIG2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_NotOR": { + "name": "L1_BPTX_TRIG2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.87890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_AND": { + "name": "L1_BRIL_TRIG3_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_delayedAND": { + "name": "L1_BRIL_TRIG3_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_ref": { + "name": "L1_BRIL_TRIG3_ref", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.19140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.1796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.3046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 165.484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.92578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.1953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.0703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.3046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.7734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.3671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.99609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.4765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.76953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 238.34765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 239.78125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.92578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.3671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 248.91015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.34765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.4375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.9375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.23046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.32421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.46484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.9609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.03125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.37109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.64453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.97265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.01953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.41796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.0, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.1328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.6875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.62109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.51953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.65625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.54296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.09375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.6484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.85546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.8125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 239.1953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.12109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.5390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.60546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.4296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 165.1640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.54296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 181.45703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.65234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.4609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.08203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.60546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.9296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.5390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.5703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.7265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.09375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.01953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 213.796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.83984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.8125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.85546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.11328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.67578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.32421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.5703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.1640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.69921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.74609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.1796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.17578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.80859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.75, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.7421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.89453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.9375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.83203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.32421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.64453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.3203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.30859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.77734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.15625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.29296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.9921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.92578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.8515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.23828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.0078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.90234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.9140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.3359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.3046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.2578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 196.58984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.90234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.1171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.59375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.1328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.84375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.3671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.83203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.5625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.21484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 230.6875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.62890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.9609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.60546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.72265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.33984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.69921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.05859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.2265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.58984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 198.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.37109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.11328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 219.0, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.25, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.12109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 213.3671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.38671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 216.609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.79296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.9140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.1640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.35546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.9453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.62890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.53515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 229.93359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.95703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.43359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.3359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.1875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.71484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.82421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.16796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.55859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.27734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.58984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.20703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.46484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.8984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.30078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.59765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.41015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.88671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.9296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 244.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.34375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.0546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.7109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.5, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 238.29296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.90234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.3203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.46875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.05859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 46.38671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.41796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.6171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 102.4296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.0859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.88671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.92578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.71875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 92.9296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.62890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.63671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.7734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.65234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.7265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.69921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.10546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.5390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.9609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.20703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 47.60546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.54296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.7421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 103.5546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.2109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.01171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.05078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.84375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 94.0546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.76171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.8984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.77734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.8515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.82421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.23046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.0859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.45703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.5625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.0703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.78125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.27734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.12109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.65625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.55859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.75, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.03125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.62109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.17578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.64453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.34765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.16796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.99609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.99609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.87890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.07421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.63671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.19140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.86328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.45703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.30859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.68359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.85546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.91015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.14453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.05078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.36328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.05859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.87890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.7578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.65625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.8984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.91796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.45703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.43359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.72265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.77734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.83984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.17578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.7890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 129.18359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.34375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.71875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.59765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.41015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 149.421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.49609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.91015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.59765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.41015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.93359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.62109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.52734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.96875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.88671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.52734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.33203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.79296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.73046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.20703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.05078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.19140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.30859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.35546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.45703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.59765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.65234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.34375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.53125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.09765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.20703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.71875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.75, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.58203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.32421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.9375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.83984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.21484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.21875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.58203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.21484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.87109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.04296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.6875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.46484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.83984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.44921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.99609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.23828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.98828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.66015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.98828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.68359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.71875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.01171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.29296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.73828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.47265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.89453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.15234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.35546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.38671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.38671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.04296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.76953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.3203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.88671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.90234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.85546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.1015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.41015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.45703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.18359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.03515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.38671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.25, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.73046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.73828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.3359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.61328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.48046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.46484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.39453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.43359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.25, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.12109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.84765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.73046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.91796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.89453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.23828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.35546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.4765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.65234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.40234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.52734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.25, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.75, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.83203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.15234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.55859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.2265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.26171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.7265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.41015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.63671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.52734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.70703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.12109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.85546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.14453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.91015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.52734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.09765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.14453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.70703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.87109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.05859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.15625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.09375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.3046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.05078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.3671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.73046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.24609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.01171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.796875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.09765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.71484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.89453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.22265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.75, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.70703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.21484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.05078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.09765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.59765625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.33984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.33203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.33984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.66015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.98828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.23046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.70703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.23046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.76171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.80078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.85546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.23828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.71484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.64453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.40625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.83203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.83984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.26953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.83203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.19140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.60546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.98828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.73046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.65625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 188.17578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.30078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.85546875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.9609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.46875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.23046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.58984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 186.84375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 203.046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.96484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 173.28515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 155.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.9140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.1875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.87890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.9609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.3828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.46875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.8046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.73046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.51171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.89453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.37109375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.47265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.76953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.21875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.28515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.7265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.05859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.54296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.77734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.48046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.23046875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.08203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.54296875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.53515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.15234375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.515625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.76953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.75, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.82421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.1484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.70703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0859375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.24609375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.69921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.1875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.3203125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.19140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.19140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.3984375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.93359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.51171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4921875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.11328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.97265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.19140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.31640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.06640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.87890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.87890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.12890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.50390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.44140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.62890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3828125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.94140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.25390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.81640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.75390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.56640625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.82421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.015625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.00390625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.05078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.71875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.21484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1953125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0078125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.71484375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.578125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0703125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.61328125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.63671875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2421875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.02734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.69140625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain_BRIL": { + "name": "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.62890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain_copy": { + "name": "HLT_ZeroBias_FirstBXAfterTrain_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.87890625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.693359375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.7939453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.326171875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.52734375, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.89453125, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.22265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.21875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.21875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.21875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.21875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.21875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.21875, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.22265625, + "entries": 1367896, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 39.859375, + "entries": 1367896, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 50.44140625, + "entries": 1367896, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 3747.71875, + "entries": 1367896, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 14748.404296875, + "entries": 168635.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 7123.12890625, + "entries": 1367896, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 7080.3984375, + "entries": 1367896, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 58504.642578125, + "entries": 6558794.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 7850.39453125, + "entries": 1367896, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 7845.15625, + "entries": 1367896, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 122394.392578125, + "entries": 1145618.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 117413.84765625, + "entries": 946669.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 832.1875, + "entries": 9001.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 41032.451171875, + "entries": 1635441.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 413272.009765625, + "entries": 9729475.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 11267.9453125, + "entries": 1367896, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 55925.734375, + "entries": 769525.9999999999, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 25983.10546875, + "entries": 1367896, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 6067.115234375, + "entries": 167372.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 55628.306640625, + "entries": 507891.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 80215.947265625, + "entries": 1683733.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 4618.755859375, + "entries": 409150.00000000006, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 40231.3984375, + "entries": 1367896, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 7125.08203125, + "entries": 1367896, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 7285.49609375, + "entries": 1367896, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 4274.84375, + "entries": 1367896, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 4329.31640625, + "entries": 1367896, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 4536.75390625, + "entries": 1367896, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 4615.3046875, + "entries": 1367896, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 4372.15625, + "entries": 1367896, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 42411.134765625, + "entries": 8152398.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 4687.60546875, + "entries": 1367896, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 4752.02734375, + "entries": 1367896, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 4728.8203125, + "entries": 1367896, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 4753.5, + "entries": 1367896, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 595.265625, + "entries": 1367896, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 893.44921875, + "entries": 1367896, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 697.18359375, + "entries": 1367896, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 36105.05078125, + "entries": 1257257.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 44324.826171875, + "entries": 743055.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 7248.61328125, + "entries": 1367896, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 116693.5634765625, + "entries": 12814049.000000002, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 7637.1513671875, + "entries": 4103033.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 13825.3671875, + "entries": 1367896, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 55115.77734375, + "entries": 1541952.9999999998, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 24826.0283203125, + "entries": 1367896, + "subs": [ + "L1_AlwaysTrue", + "L1_BPTX_LUT1_AND", + "L1_BPTX_LUT1_B1", + "L1_BPTX_LUT1_B2", + "L1_BPTX_LUT1_OR", + "L1_BPTX_LUT2_AND", + "L1_BPTX_LUT2_B1NotB2", + "L1_BPTX_LUT2_B2NotB1", + "L1_BPTX_LUT2_NotOR", + "L1_BPTX_TRIG2_AND", + "L1_BPTX_TRIG2_B1NotB2", + "L1_BPTX_TRIG2_B2NotB1", + "L1_BPTX_TRIG2_NotOR", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BRIL_TRIG3_AND", + "L1_BRIL_TRIG3_delayedAND", + "L1_BRIL_TRIG3_ref", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_ETT40_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2629.44921875, + "entries": 1367896, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 35.37890625, + "entries": 1367896, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 36.69140625, + "entries": 1367896, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 25353.51171875, + "entries": 1367896, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "HLT_ZeroBias_FirstBXAfterTrain_copy", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 36.69140625, + "entries": 1367896, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 6, + "allsize": 0.091796875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.091796875, + "entries": 6, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.091796875, + "entries": 6, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 3254, + "allsize": 2.6728515625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2177734375, + "entries": 3254, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.7841796875, + "entries": 3254, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2275390625, + "entries": 3254, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.22265625, + "entries": 3254, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.220703125, + "entries": 3254, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2177734375, + "entries": 3254, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.7841796875, + "entries": 3254, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2275390625, + "entries": 3254, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.22265625, + "entries": 3254, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.220703125, + "entries": 3254, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30521/DoubleEG_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30521/DoubleEG_doc.html new file mode 100644 index 000000000..c53e0cb64 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30521/DoubleEG_doc.html @@ -0,0 +1,1674 @@ + + + + Documentation for 11DA657F-5262-BD4A-AD1E-8E53BE62A601.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrain_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrain_BRILBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_refBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30521/DoubleEG_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30521/DoubleEG_doc.json new file mode 100644 index 000000000..223bd88f6 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30521/DoubleEG_doc.json @@ -0,0 +1,14294 @@ +{ + "filename": "11DA657F-5262-BD4A-AD1E-8E53BE62A601.root", + "filesize": 1886760.3818359375, + "trees": { + "Events": { + "entries": 2014154, + "allsize": 1880737.8037109375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 55.384765625, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 61.783203125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 5407.248046875, + "entries": 2014154, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 247.037109375, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 630.427734375, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 733.75, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 649.400390625, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 650.927734375, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 614.2109375, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 576.998046875, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 556.451171875, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 736.0625, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 491.900390625, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 817.232421875, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 652.716796875, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 642.322265625, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 643.806640625, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 623.166015625, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 691.04296875, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 663.328125, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 836.03515625, + "entries": 148579.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 375.310546875, + "entries": 148579.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 409.0, + "entries": 148579.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 331.662109375, + "entries": 148579.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 431.43359375, + "entries": 148579.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 392.6328125, + "entries": 148579.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 328.412109375, + "entries": 148579.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 413.994140625, + "entries": 148579.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 410.677734375, + "entries": 148579.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 411.142578125, + "entries": 148579.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 3813.642578125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3552.34375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3183.068359375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 3826.53515625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3558.302734375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3109.31640625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1065.283203125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 8999.0908203125, + "entries": 10405047.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 23730.1298828125, + "entries": 10405047.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 15434.9150390625, + "entries": 10405047.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 24001.9072265625, + "entries": 10405047.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 16761.19140625, + "entries": 10405047.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 4539.232421875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 6985.23046875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 4603.091796875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 6992.515625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 657.408203125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 5120.322265625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 5115.19921875, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1315.244140625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1315.37109375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 6025.9794921875, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 3412.646484375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 3219.5048828125, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2825.572265625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 2788.212890625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 6329.611328125, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 4211.7958984375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 6408.6162109375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 4274.734375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 6983.65234375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 6161.390625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 4445.2109375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 6749.841796875, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 4345.822265625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 6028.5751953125, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 4933.7255859375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 5122.3515625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 6044.9775390625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 8766.0791015625, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 7713.9345703125, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 7503.6435546875, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 7921.7392578125, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 9056.8037109375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 8380.7529296875, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 6750.724609375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 9552.4404296875, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 5022.8740234375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 5211.6083984375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 5276.609375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 5850.984375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 5536.2724609375, + "entries": 2373371.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1723.2802734375, + "entries": 2373371.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1866.3251953125, + "entries": 2373371.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2131.6787109375, + "entries": 2373371.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1728.80078125, + "entries": 2373371.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 2024.33203125, + "entries": 2373371.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1847.720703125, + "entries": 2373371.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 4864.3359375, + "entries": 2373371.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 4191.2421875, + "entries": 2373371.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 1230.423828125, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 1291.1875, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1469.537109375, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2088.744140625, + "entries": 2373371.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1512.107421875, + "entries": 2373371.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 1310.2265625, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 1334.13671875, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 1409.904296875, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 1330.10546875, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 1362.35546875, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1445.388671875, + "entries": 2373371.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1108.427734375, + "entries": 2373371.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 339.611328125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 767.595703125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1138.68359375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 1238.35546875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 1154.69921875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 1206.02734375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1160.2109375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 1172.203125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 1058.482421875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 1126.634765625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1108.240234375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1044.908203125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 1126.2890625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 1085.93359375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 1109.044921875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1039.107421875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 1124.98828125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 1073.765625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 1206.76953125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1111.89453125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 1152.4296875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1246.599609375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1223.021484375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1222.376953125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 1366.5625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 1144.826171875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 1060.640625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 943.248046875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 672.787109375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 1127.6015625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 1230.8671875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 1197.64453125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 1205.62890625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 1260.294921875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 1236.587890625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 1229.990234375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1111.35546875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 1255.923828125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 1223.373046875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 1225.654296875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 1164.779296875, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 1365.30078125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 1074.681640625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 864.52734375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1160.580078125, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1159.912109375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1156.802734375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1154.931640625, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1003.583984375, + "entries": 359859.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 477.1875, + "entries": 359859.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 580.380859375, + "entries": 359859.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 579.255859375, + "entries": 359859.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 577.505859375, + "entries": 359859.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 496.763671875, + "entries": 359859.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 716.80078125, + "entries": 359859.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 80.36328125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 157.720703125, + "entries": 6721.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 149.794921875, + "entries": 6721.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 149.724609375, + "entries": 6721.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 147.46484375, + "entries": 6721.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 156.83203125, + "entries": 6721.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 130.294921875, + "entries": 6721.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 685.892578125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 5832.71484375, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5761.9951171875, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 6153.58984375, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 4661.25390625, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3819.11328125, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 6183.390625, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 5062.8271484375, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4247.2265625, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2717.7666015625, + "entries": 2206925.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1545.734375, + "entries": 2206925.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1577.66796875, + "entries": 2206925.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1577.0263671875, + "entries": 2206925.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1329.19921875, + "entries": 2206925.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1008.470703125, + "entries": 2206925.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1204.01953125, + "entries": 2206925.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1007.75, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 8344.4765625, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 15710.2421875, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 14686.56640625, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 13405.109375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 13785.0859375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 20666.2109375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 17012.62890625, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 19032.3359375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 18059.87890625, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 4653.7265625, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 12826.5234375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 12706.0234375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 24905.5078125, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 3794.9375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 3794.20703125, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 19125.12109375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 2965.13671875, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 15884.65234375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 14670.89453125, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 13632.3671875, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 24584.20703125, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 19038.03125, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 19211.7734375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 14683.36328125, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 15537.59375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 15708.0234375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 12987.1015625, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 15625.49609375, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 12973.6953125, + "entries": 10731451.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3592.1875, + "entries": 10731451.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2234.7890625, + "entries": 10731451.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1998.3623046875, + "entries": 10731451.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2353.4091796875, + "entries": 10731451.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3033.8203125, + "entries": 10731451.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2331.05859375, + "entries": 10731451.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 1948.1328125, + "entries": 10731451.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3386.42578125, + "entries": 10731451.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2446.265625, + "entries": 10731451.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 4637.2734375, + "entries": 10731451.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 7915.513671875, + "entries": 10731451.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1940.9921875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1907.638671875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1934.10546875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1950.759765625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 336.359375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 131.716796875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 350.048828125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 335.181640625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 339.521484375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 2107.275390625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2130.1015625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 597.6953125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 6340.703125, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1523.04296875, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 4193.08984375, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4224.61328125, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2980.421875, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4332.7421875, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2917.765625, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 4166.14453125, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 6130.5703125, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 3116.58203125, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 4565.16796875, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2685.22265625, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 4158.70703125, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5093.59765625, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4202.1875, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 4535.44140625, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 6322.16015625, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 5594.25, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 3993.32421875, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 3556.18359375, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 3317.7265625, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 5907.21875, + "entries": 1490422.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1315.67578125, + "entries": 1490422.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1232.55078125, + "entries": 1490422.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1314.5859375, + "entries": 1490422.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1055.453125, + "entries": 1490422.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1244.14453125, + "entries": 1490422.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 3955.16015625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 3952.78515625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2604.412109375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3259.419921875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2602.830078125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 4594.427734375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 6982.19921875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 3774.1796875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3158.919921875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3142.53515625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 166.056640625, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 857.138671875, + "entries": 242237.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 910.2548828125, + "entries": 242237.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 911.0556640625, + "entries": 242237.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 312.5302734375, + "entries": 242237.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 313.77734375, + "entries": 242237.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 807.6220703125, + "entries": 242237.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 359.62109375, + "entries": 242237.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 362.501953125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1465.95703125, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1029.431640625, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 1475.05859375, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1486.017578125, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1082.5078125, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 1513.6796875, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1415.552734375, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1025.275390625, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1210.484375, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 618.873046875, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1687.431640625, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1419.087890625, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 1771.822265625, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1603.615234375, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 1847.103515625, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 1509.921875, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 1882.681640625, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 1101.20703125, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 1363.7734375, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 1412.1953125, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 844.85546875, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 1036.228515625, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 598.236328125, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 1183.919921875, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1257.279296875, + "entries": 391860.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 618.884765625, + "entries": 391860.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 713.314453125, + "entries": 391860.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 698.98828125, + "entries": 391860.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 783.740234375, + "entries": 391860.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 619.6015625, + "entries": 391860.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 567.359375, + "entries": 391860.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 545.013671875, + "entries": 391860.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 578.201171875, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 562.849609375, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 549.103515625, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 579.142578125, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 579.751953125, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 579.638671875, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 565.9296875, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 683.376953125, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 578.87109375, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 574.892578125, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 558.865234375, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 631.22265625, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 568.318359375, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 505.33203125, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 504.419921875, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 628.2109375, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 597.595703125, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 575.224609375, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 559.21484375, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 558.73828125, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 586.5703125, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 579.869140625, + "entries": 391860.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 579.076171875, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 7892.73828125, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 7893.76953125, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1632.68359375, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1629.34375, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 4932.51953125, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 7263.79296875, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 11522.06640625, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 6992.625, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 6213.126953125, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 8352.10546875, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 8579.236328125, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 16202.060546875, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 13873.736328125, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 11450.76953125, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 16545.271484375, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 8098.279296875, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 8649.41796875, + "entries": 4362494.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1627.896484375, + "entries": 4362494.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 2450.908203125, + "entries": 4362494.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 2464.7109375, + "entries": 4362494.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 2552.2890625, + "entries": 4362494.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2828.146484375, + "entries": 4362494.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1627.87109375, + "entries": 4362494.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 5300.875, + "entries": 4362494.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1882.798828125, + "entries": 4362494.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1921.23828125, + "entries": 4362494.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1895.7265625, + "entries": 4362494.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1760.353515625, + "entries": 4362494.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1811.779296875, + "entries": 4362494.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1909.24609375, + "entries": 4362494.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1333.564453125, + "entries": 4362494.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 220.6328125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1672.583984375, + "entries": 598062.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1856.603515625, + "entries": 598062.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 423.8984375, + "entries": 598062.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 425.466796875, + "entries": 598062.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 532.21875, + "entries": 598062.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 535.404296875, + "entries": 598062.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 565.810546875, + "entries": 598062.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 425.078125, + "entries": 598062.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 4579.05859375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 3799.736328125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 3799.216796875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 3798.115234375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 3800.279296875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 3796.716796875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 3804.501953125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 7009.552734375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3587.984375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3587.46484375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3589.5234375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3584.6171875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3584.9375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3588.2265625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3444.41796875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 3817.20703125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3556.943359375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3154.296875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 3795.095703125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3595.78125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3433.451171875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 6292.26171875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 6407.84375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 6651.06640625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 6420.189453125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 6465.833984375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 231.8828125, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 18930.1708984375, + "entries": 11357108.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 18658.1123046875, + "entries": 11357108.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 21476.796875, + "entries": 11357108.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 6680.611328125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 6267.048828125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 6712.08984375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 6692.39453125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 794.32421875, + "entries": 2014154, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1250.197265625, + "entries": 2014154, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 926.490234375, + "entries": 2014154, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 221.15234375, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1673.0703125, + "entries": 598062.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1615.46484375, + "entries": 598062.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 566.400390625, + "entries": 598062.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 286.822265625, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1079.2265625, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1093.76171875, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 1391.171875, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 1278.591796875, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1016.705078125, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1024.212890625, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 1384.2734375, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 1211.357421875, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 842.2734375, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1203.763671875, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1156.556640625, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1110.783203125, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1074.853515625, + "entries": 422610.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 509.3984375, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 2637.15234375, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 3236.228515625, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 3665.63671875, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 3475.326171875, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 2871.8046875, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 2885.1640625, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 2584.591796875, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 2375.63671875, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 2034.6796875, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 3459.126953125, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1816.90625, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 4610.59375, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 2897.6328125, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 2913.111328125, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 2839.939453125, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 2333.95703125, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 2712.82421875, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 2403.50390625, + "entries": 1089908.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 1125.4453125, + "entries": 1089908.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1323.763671875, + "entries": 1089908.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1321.40625, + "entries": 1089908.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 871.263671875, + "entries": 1089908.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 859.64453125, + "entries": 1089908.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 982.380859375, + "entries": 1089908.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1388.2734375, + "entries": 1089908.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1403.62109375, + "entries": 1089908.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 1072.572265625, + "entries": 1089908.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 3788.990234375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3619.46875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3296.923828125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1083.2890625, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 15779.353515625, + "entries": 7323950.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 14964.697265625, + "entries": 7323950.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 14839.833984375, + "entries": 7323950.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 9864.9404296875, + "entries": 7323950.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1744.56640625, + "entries": 7323950.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 9998.43359375, + "entries": 7323950.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 3127.40625, + "entries": 7323950.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 3139.48046875, + "entries": 7323950.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1773.92578125, + "entries": 7323950.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 4584.3857421875, + "entries": 7323950.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 58.94921875, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 10666.4970703125, + "entries": 5775429.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2631.806640625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2307.328125, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2030.90625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 5239.09375, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2185.669921875, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2984.81640625, + "entries": 2014154, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1260.912109375, + "entries": 2014154, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1237.677734375, + "entries": 2014154, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 549.384765625, + "entries": 2014154, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 3129.61328125, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 3016.3125, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 3120.25, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 3021.85546875, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2044.23046875, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1376.07421875, + "entries": 1167015.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1089.7578125, + "entries": 2373371.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2746.888671875, + "entries": 10731451.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 576.16796875, + "entries": 391860.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1270.19140625, + "entries": 4362494.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 829.501953125, + "entries": 1089908.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 2799.90234375, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 3673.36328125, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 2992.90234375, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2254.59765625, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 3655.55859375, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 3059.80859375, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 3359.484375, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 3343.48828125, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 3771.12109375, + "entries": 1167015.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1088.50390625, + "entries": 1167015.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_AND": { + "name": "L1_BPTX_LUT1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B1": { + "name": "L1_BPTX_LUT1_B1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B2": { + "name": "L1_BPTX_LUT1_B2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_OR": { + "name": "L1_BPTX_LUT1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_AND": { + "name": "L1_BPTX_LUT2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B1NotB2": { + "name": "L1_BPTX_LUT2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B2NotB1": { + "name": "L1_BPTX_LUT2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_NotOR": { + "name": "L1_BPTX_LUT2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.87109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_AND": { + "name": "L1_BPTX_TRIG2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B1NotB2": { + "name": "L1_BPTX_TRIG2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B2NotB1": { + "name": "L1_BPTX_TRIG2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_NotOR": { + "name": "L1_BPTX_TRIG2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.130859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.4296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_AND": { + "name": "L1_BRIL_TRIG3_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_delayedAND": { + "name": "L1_BRIL_TRIG3_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.4296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_ref": { + "name": "L1_BRIL_TRIG3_ref", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.533203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.052734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.79296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 286.896484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.853515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 231.205078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 232.111328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 224.646484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.001953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 229.888671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 345.994140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 359.357421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 352.681640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.818359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 354.419921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 352.310546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 358.755859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 356.603515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 354.603515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 351.689453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.98828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.98828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 273.74609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 241.2421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 219.1328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.177734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.060546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.876953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.162109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.923828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.7265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.28515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.79296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.623046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.3828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.771484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.80859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.134765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.44921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.119140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.19140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.53125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.9140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.57421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 294.84765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.81640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 341.69140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.404296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.525390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.73828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.34765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.3828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.1484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.98046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.5546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.28125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.6953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.99609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.533203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.533203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.533203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.533203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.533203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.759765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.060546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.548828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.990234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.751953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.212890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.115234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 239.677734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 272.357421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 256.197265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 354.416015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 359.927734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 357.615234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.1640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.54296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.01171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.201171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.142578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.2890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.220703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.712890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.263671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.53125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.724609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.232421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.25, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.34375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.6015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.03515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.2890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.603515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.41015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.87890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.595703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.009765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.486328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.919921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.076171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.25, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.26953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.021484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.470703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.361328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.294921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.216796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.337890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.052734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.447265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.39453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.142578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.744140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.943359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.181640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.509765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.662109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 241.486328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 297.513671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 322.982421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 338.833984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 350.482421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 358.126953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 361.283203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.2734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.95703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.56640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.95703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.05078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.22265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.51171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.8984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 231.03125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.51171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 298.921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 289.06640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 352.34375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 342.421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 361.6015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 354.55078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 362.85546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 358.82421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 363.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 361.58984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.181640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.91015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.068359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.294921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.84765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.396484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.029296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.912109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.86328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.916015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.07421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.6171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.26953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.689453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.689453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.751953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.69921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.115234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.896484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.697265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.501953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.826171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.787109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.931640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.876953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.001953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.095703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.357421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.072265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.0390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.55859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.87109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.154296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.689453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.080078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 195.939453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 224.716796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 253.931640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.314453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 255.853515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 225.447265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.48046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.845703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.173828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.736328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.248046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.8125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.271484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 101.552734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 157.02734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 94.767578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 81.23828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.587890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.43359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.228515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.458984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 125.076171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.908203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.4765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.08984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.365234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.333984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.87890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.51171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.43359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.06640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.248046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.505859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 96.412109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 49.052734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.37109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.830078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 103.111328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 158.5859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 96.326171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 82.796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.146484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.9921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.787109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.017578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 126.634765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.130859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.466796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.44921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.03515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.6484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.923828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.892578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.4375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.0703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.02734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.02734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.806640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.064453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 97.962890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.87109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.904296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.916015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.619140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.51171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.666015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.45703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.712890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.845703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.279296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 231.1015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 224.373046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 309.7265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.58203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.8359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.66015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.58984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.888671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.837890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.95703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.03515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.361328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.208984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.67578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.298828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.39453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.169921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.658203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.177734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.654296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.43359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.4296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.806640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.5078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 194.82421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.82421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 155.34765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 155.95703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.01171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.236328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.330078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 150.26171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.552734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.32421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 198.67578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.224609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.486328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 202.162109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.0, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 208.4921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.599609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.740234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.732421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 197.26953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 189.26953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.705078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.884765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 158.076171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 156.939453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.126953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.408203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.4296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.689453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.802734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.966796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.076171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.376953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.958984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.98828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.3203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.3203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.8671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.255859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.4609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.29296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.638671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.59375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.056640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.28515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.291015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.052734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.576171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.8984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.248046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.251953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.005859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.908203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.580078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.697265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.435546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.353515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.37109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.8125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.87109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.693359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.26953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.21484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.94921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.02734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.02734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.4453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.06640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.06640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.599609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.642578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.419921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.0234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.34765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.36328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.134765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.322265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.90234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.646484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.41796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.958984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.662109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.591796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.8671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.224609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.3125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.66796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.470703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.1875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.064453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.26953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.3125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.146484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.658203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.35546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.87890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.181640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.08203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.4609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.634765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.685546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.58984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.54296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.783203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.47265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.416015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.12890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.47265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.240234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.341796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.72265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.0625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.61328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.50390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.689453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.689453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.208984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.208984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.02734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.02734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.91015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.91015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.91015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.84375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.9140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.427734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.759765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.267578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.365234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.560546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.462890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.822265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.083984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.123046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.201171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.78125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.79296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.05078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.2421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.96875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.4921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.943359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.009765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.861328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.283203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.876953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.560546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.9296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.310546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.287109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.865234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.564453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.380859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.466796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.91796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.0703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.98828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.25390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.705078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.208984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.361328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.365234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.009765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.283203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.771484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.095703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.697265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.205078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.529296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.82421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.884765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.201171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.076171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.486328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.236328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.482421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.4296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.3828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.54296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.349609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.59765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.60546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.232421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.88671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.208984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.884765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.322265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.982421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.25390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.193359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.150390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.244140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.583984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.603515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.837890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.69921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.3125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.16015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.095703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.173828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.95703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.8203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.177734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.259765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.677734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.490234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.5859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.369140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.955078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.32421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.51953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.5234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.697265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.615234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.095703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.724609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.798828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.548828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.361328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.271484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.78515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.8984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.685546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.3671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.0625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.31640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.353515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.509765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.287109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.1015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 238.298828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.94921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.072265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.076171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.98046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.373046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.494140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.7734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.779296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.87890625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.064453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.451171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.509765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.759765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.744140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.19140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.697265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.283203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.1171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.248046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.244140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.580078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.724609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.86328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.763671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.06640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 153.08203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.73828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.47265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.28125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.50390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.46484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.5078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.9921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.41796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.4609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.6171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.08984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.47265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.62109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.8828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.361328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.486328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.82421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.021484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.208984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.435546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.818359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.021484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.021484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.52734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 321.28125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 167.228515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 290.427734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.205078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 297.2109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.681640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.4609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.94921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.798828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.287109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.79296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.244140625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.322265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.029296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.845703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.935546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.798828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.376953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.216796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.80859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.75390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.3828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.62109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.294921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.248046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.767578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.08203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.240234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.59765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.287109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.806640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.048828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.642578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.22265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.7421875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.8671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.5, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.0078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.208984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.365234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.884765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.431640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.541015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 147.806640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.412109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.408203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.064453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.3046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.767578125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.775390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.689453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.314453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.533203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.748046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.466796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.6328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.216796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.5078125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.05859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.4296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.681640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.4296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.216796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.0390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.00390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.0390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.724609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.1640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.1640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.025390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.3359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.130859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.298828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.04296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.23828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.787109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.072265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.751953125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.603515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.58984375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.28515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.138671875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 264.39453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.10546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.10546875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.365234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.365234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.365234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.728515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.98828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.98828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.98828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.478515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.37109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.068359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.029296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.724609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.927734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.79296875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.31640625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.3515625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.130859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.130859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.83203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.091796875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.87109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.611328125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.572265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.91015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.169921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.068359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.84375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.650390625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.5859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.884765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.884765625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.076171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.748046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.552734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.544921875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.97265625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.8828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.9609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.5703125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.46875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.39453125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.048828125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.865234375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.015625, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.2734375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.98046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.87109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain_BRIL": { + "name": "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.326171875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain_copy": { + "name": "HLT_ZeroBias_FirstBXAfterTrain_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.287109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.193359375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.4609375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.08203125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.12109375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.71484375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.8125, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.8046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.8046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.8046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.80859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.80859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.80859375, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.8046875, + "entries": 2014154, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 55.384765625, + "entries": 2014154, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 61.783203125, + "entries": 2014154, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 5407.248046875, + "entries": 2014154, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 14961.08203125, + "entries": 148579.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 10549.0546875, + "entries": 2014154, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 10494.154296875, + "entries": 2014154, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 89992.517578125, + "entries": 10405047.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 11524.462890625, + "entries": 2014154, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 11595.607421875, + "entries": 2014154, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 234740.251953125, + "entries": 2373371.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 58263.853515625, + "entries": 359859.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 972.1953125, + "entries": 6721.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 53367.888671875, + "entries": 2206925.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 459642.794921875, + "entries": 10731451.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 13463.701171875, + "entries": 2014154, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 100616.96875, + "entries": 1490422.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 38026.869140625, + "entries": 2014154, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 8714.14453125, + "entries": 242237.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 51013.109375, + "entries": 391860.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 180940.21484375, + "entries": 4362494.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 6657.697265625, + "entries": 598062.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 59354.349609375, + "entries": 2014154, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 10528.447265625, + "entries": 2014154, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 10824.328125, + "entries": 2014154, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 6292.26171875, + "entries": 2014154, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6407.84375, + "entries": 2014154, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 6651.06640625, + "entries": 2014154, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6420.189453125, + "entries": 2014154, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 6465.833984375, + "entries": 2014154, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 59296.962890625, + "entries": 11357108.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 6680.611328125, + "entries": 2014154, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 6267.048828125, + "entries": 2014154, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 6712.08984375, + "entries": 2014154, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 6692.39453125, + "entries": 2014154, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 794.32421875, + "entries": 2014154, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1250.197265625, + "entries": 2014154, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 926.490234375, + "entries": 2014154, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 15154.353515625, + "entries": 422610.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 63441.087890625, + "entries": 1089908.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 10705.3828125, + "entries": 2014154, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 80900.3125, + "entries": 7323950.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 10725.4462890625, + "entries": 5775429.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 19878.2109375, + "entries": 2014154, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 46256.451171875, + "entries": 1167015.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 31308.1953125, + "entries": 2014154, + "subs": [ + "L1_AlwaysTrue", + "L1_BPTX_LUT1_AND", + "L1_BPTX_LUT1_B1", + "L1_BPTX_LUT1_B2", + "L1_BPTX_LUT1_OR", + "L1_BPTX_LUT2_AND", + "L1_BPTX_LUT2_B1NotB2", + "L1_BPTX_LUT2_B2NotB1", + "L1_BPTX_LUT2_NotOR", + "L1_BPTX_TRIG2_AND", + "L1_BPTX_TRIG2_B1NotB2", + "L1_BPTX_TRIG2_B2NotB1", + "L1_BPTX_TRIG2_NotOR", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BRIL_TRIG3_AND", + "L1_BRIL_TRIG3_delayedAND", + "L1_BRIL_TRIG3_ref", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_ETT40_BptxAND" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 3602.30078125, + "entries": 2014154, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 49.052734375, + "entries": 2014154, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 50.87109375, + "entries": 2014154, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 35989.84375, + "entries": 2014154, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "HLT_ZeroBias_FirstBXAfterTrain_copy", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 50.87109375, + "entries": 2014154, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 29, + "allsize": 0.181640625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.181640625, + "entries": 29, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.181640625, + "entries": 29, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1164, + "allsize": 2.4306640625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2412109375, + "entries": 1164, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.5693359375, + "entries": 1164, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2041015625, + "entries": 1164, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.203125, + "entries": 1164, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.212890625, + "entries": 1164, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2412109375, + "entries": 1164, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.5693359375, + "entries": 1164, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2041015625, + "entries": 1164, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.203125, + "entries": 1164, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.212890625, + "entries": 1164, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30522/DoubleMuon_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30522/DoubleMuon_doc.html new file mode 100644 index 000000000..1a79f756a --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30522/DoubleMuon_doc.html @@ -0,0 +1,1684 @@ + + + + Documentation for 05DD095C-F6C3-9A4F-9FB3-348A5A6403D5.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrain_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrain_BRILBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_refBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30522/DoubleMuon_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30522/DoubleMuon_doc.json new file mode 100644 index 000000000..b3a0148c0 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30522/DoubleMuon_doc.json @@ -0,0 +1,14394 @@ +{ + "filename": "05DD095C-F6C3-9A4F-9FB3-348A5A6403D5.root", + "filesize": 2105443.990234375, + "trees": { + "Events": { + "entries": 2315223, + "allsize": 2099571.36328125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 55.90625, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 65.28125, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 6239.1484375, + "entries": 2315223, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 264.1015625, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 632.6416015625, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 737.33984375, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 652.5634765625, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 654.0166015625, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 598.740234375, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 551.1474609375, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 542.9306640625, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 740.18359375, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 474.9169921875, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 811.8955078125, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 655.3447265625, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 686.4228515625, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 642.2314453125, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 614.7080078125, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 687.244140625, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 654.560546875, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 822.724609375, + "entries": 147719.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 379.1611328125, + "entries": 147719.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 414.212890625, + "entries": 147719.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 335.2587890625, + "entries": 147719.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 415.958984375, + "entries": 147719.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 406.123046875, + "entries": 147719.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 353.4404296875, + "entries": 147719.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 417.7646484375, + "entries": 147719.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 417.7294921875, + "entries": 147719.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 420.0146484375, + "entries": 147719.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4361.9609375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 4067.421875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3644.1171875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4375.5234375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 4069.64453125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3555.1796875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1206.1171875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 10462.0048828125, + "entries": 11917046.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 27696.662109375, + "entries": 11917046.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 18057.173828125, + "entries": 11917046.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 27965.369140625, + "entries": 11917046.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 19472.72265625, + "entries": 11917046.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 5178.8671875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 8028.70703125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 5270.1328125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 8032.76953125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 478.54296875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1833.302734375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 1832.04296875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 724.447265625, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 723.72265625, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2141.1240234375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 895.458984375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 896.4658203125, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 874.607421875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 877.615234375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2256.970703125, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1613.7451171875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2286.6396484375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1619.5625, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2504.01171875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2177.66796875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1688.7890625, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 2357.986328125, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1663.365234375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2170.5869140625, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1769.6669921875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1828.0859375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 2127.0634765625, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2965.4150390625, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2687.7080078125, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 2501.8154296875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 2597.2001953125, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 2990.3662109375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2832.1162109375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 2350.912109375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 3036.7685546875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1871.8232421875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1882.3818359375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1924.7421875, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 2115.48828125, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1799.7099609375, + "entries": 667187.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 866.0576171875, + "entries": 667187.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 809.4345703125, + "entries": 667187.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1049.4794921875, + "entries": 667187.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 866.48046875, + "entries": 667187.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 896.96875, + "entries": 667187.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 888.294921875, + "entries": 667187.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1821.64453125, + "entries": 667187.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1646.8671875, + "entries": 667187.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 719.5009765625, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 693.3046875, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 812.1533203125, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1001.7958984375, + "entries": 667187.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 812.3056640625, + "entries": 667187.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 712.126953125, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 726.330078125, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 743.9873046875, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 727.6875, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 746.734375, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 763.8017578125, + "entries": 667187.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 690.1298828125, + "entries": 667187.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 337.18359375, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 717.2763671875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1077.427734375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 1159.2421875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 1103.44921875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 1136.67578125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1111.662109375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 1125.46875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 1022.1572265625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 1055.6923828125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1043.6396484375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1008.1708984375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 1055.04296875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 1025.921875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 1051.0087890625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1003.2451171875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 1050.28515625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 1011.7890625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 1124.943359375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1071.04296875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 1152.720703125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1159.9384765625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1148.3642578125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1139.4580078125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 1259.78515625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 1052.5107421875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 998.310546875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 903.6162109375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 649.1318359375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 1076.134765625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 1152.201171875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 1144.912109375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 1154.490234375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 1171.8466796875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 1158.5302734375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 1154.6240234375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1078.78125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 1169.5126953125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 1150.7978515625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 1142.9658203125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 1070.8544921875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 1256.60546875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 989.8095703125, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 798.666015625, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1062.6669921875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1062.7568359375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1059.9755859375, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1058.1826171875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 989.4873046875, + "entries": 323686.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 435.826171875, + "entries": 323686.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 541.4541015625, + "entries": 323686.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 542.0673828125, + "entries": 323686.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 498.7119140625, + "entries": 323686.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 561.1650390625, + "entries": 323686.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 666.818359375, + "entries": 323686.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 217.203125, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 619.0458984375, + "entries": 91370.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 531.3994140625, + "entries": 91370.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 530.2158203125, + "entries": 91370.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 486.380859375, + "entries": 91370.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 587.765625, + "entries": 91370.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 293.0087890625, + "entries": 91370.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 798.2421875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7053.3251953125, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 6945.181640625, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 7465.177734375, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 5537.8603515625, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4628.794921875, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 7499.3212890625, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6144.4248046875, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5047.0400390625, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3293.892578125, + "entries": 2646712.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1874.2646484375, + "entries": 2646712.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1893.4599609375, + "entries": 2646712.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1988.515625, + "entries": 2646712.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1521.7109375, + "entries": 2646712.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1162.8916015625, + "entries": 2646712.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1412.353515625, + "entries": 2646712.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1154.73046875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 9170.734375, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 17852.353515625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 16983.146484375, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 16594.935546875, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 16388.134765625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 22572.962890625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 19683.884765625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 21304.310546875, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 19694.28515625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 3720.0234375, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 14355.77734375, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 14206.083984375, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 27031.947265625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4572.240234375, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4573.845703125, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 20602.7890625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 8036.7421875, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 17640.767578125, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 15814.40625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 14679.166015625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 26652.048828125, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 20467.84765625, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 20294.359375, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 15895.037109375, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 17046.435546875, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 17614.89453125, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 13729.435546875, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 17342.1953125, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 14096.060546875, + "entries": 11432871.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3129.51953125, + "entries": 11432871.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2300.41796875, + "entries": 11432871.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2358.283203125, + "entries": 11432871.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2794.548828125, + "entries": 11432871.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3428.228515625, + "entries": 11432871.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 4491.90234375, + "entries": 11432871.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 3262.73046875, + "entries": 11432871.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3119.48828125, + "entries": 11432871.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 4254.26953125, + "entries": 11432871.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 5036.07421875, + "entries": 11432871.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 8504.8798828125, + "entries": 11432871.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 4801.88671875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1172.57421875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1184.45703125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1193.7734375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 5218.7265625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 4477.0546875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 5321.69921875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 5142.14453125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 5288.40625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 5475.046875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 5600.25390625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 521.10546875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 3955.033203125, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1035.4990234375, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2747.501953125, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2757.0634765625, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1975.591796875, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2829.294921875, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1962.4638671875, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2688.6357421875, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 3746.732421875, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2105.7177734375, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2962.7705078125, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1787.6494140625, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2667.1640625, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3201.8203125, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2635.1953125, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2941.7939453125, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 3851.083984375, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 3570.1875, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2526.876953125, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2343.849609375, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2113.4912109375, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 3609.1640625, + "entries": 867652.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1028.482421875, + "entries": 867652.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 909.361328125, + "entries": 867652.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1027.8037109375, + "entries": 867652.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 859.6484375, + "entries": 867652.9999999999, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 943.31640625, + "entries": 867652.9999999999, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4524.30078125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4522.01953125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2967.98828125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3726.49609375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2967.86328125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 5245.734375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 8021.390625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 4321.390625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3610.96875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3591.3046875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 217.25390625, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1160.830078125, + "entries": 338384.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1234.0673828125, + "entries": 338384.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1234.4267578125, + "entries": 338384.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 400.4326171875, + "entries": 338384.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 401.703125, + "entries": 338384.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1089.3408203125, + "entries": 338384.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 464.828125, + "entries": 338384.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 718.30859375, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 12001.07421875, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 7203.439453125, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 11933.6015625, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 12169.552734375, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 7446.64453125, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 12800.9140625, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 11475.966796875, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 8783.337890625, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 9511.80078125, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 2466.349609375, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 15974.224609375, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 13035.865234375, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 16895.908203125, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 15185.208984375, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 17744.025390625, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 12764.61328125, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 18759.810546875, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 7944.64453125, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 10659.33984375, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 11291.46484375, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 5936.56640625, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 7512.916015625, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 2479.208984375, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 10495.087890625, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 10469.029296875, + "entries": 4891503.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 2663.939453125, + "entries": 4891503.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 3529.849609375, + "entries": 4891503.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 3463.55078125, + "entries": 4891503.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 4172.708984375, + "entries": 4891503.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 2670.6328125, + "entries": 4891503.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 2016.6953125, + "entries": 4891503.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 2073.814453125, + "entries": 4891503.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 2192.7666015625, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1763.7412109375, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1537.6435546875, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1923.7744140625, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1923.1845703125, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1883.0361328125, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1834.41796875, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 3474.7060546875, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1925.048828125, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 2008.1064453125, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 2155.6630859375, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 2826.7734375, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 2035.6708984375, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 2260.49609375, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 1423.2138671875, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 2864.646484375, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 2448.0302734375, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1933.9248046875, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 2141.03515625, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 2103.845703125, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 2281.634765625, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1945.6201171875, + "entries": 4891503.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 504.06640625, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1913.7734375, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 1916.681640625, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 755.7421875, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 754.361328125, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1392.541015625, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 1851.244140625, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 2615.74609375, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 1847.71484375, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 1687.5107421875, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 1934.728515625, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 2003.6162109375, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 3405.3603515625, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 3170.7939453125, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 2599.546875, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 3325.1025390625, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 2050.8251953125, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 2104.224609375, + "entries": 760609.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 752.7587890625, + "entries": 760609.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 828.9169921875, + "entries": 760609.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 842.0390625, + "entries": 760609.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 924.08984375, + "entries": 760609.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1076.5908203125, + "entries": 760609.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 752.763671875, + "entries": 760609.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 1555.732421875, + "entries": 760609.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 830.2373046875, + "entries": 760609.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 848.392578125, + "entries": 760609.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 835.896484375, + "entries": 760609.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 773.3759765625, + "entries": 760609.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 789.7900390625, + "entries": 760609.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 837.197265625, + "entries": 760609.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 718.9599609375, + "entries": 760609.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 298.2578125, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2335.6767578125, + "entries": 848416.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 2591.5009765625, + "entries": 848416.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 563.7578125, + "entries": 848416.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 565.2060546875, + "entries": 848416.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 712.51953125, + "entries": 848416.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 717.7978515625, + "entries": 848416.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 763.0576171875, + "entries": 848416.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 564.923828125, + "entries": 848416.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 5226.12890625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4342.76953125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4342.25390625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4342.125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4342.48828125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4341.375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4348.12109375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 8065.796875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 4117.1640625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 4116.6484375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 4117.6796875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 4118.9296875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 4114.41015625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 4116.32421875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4010.91015625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4364.40625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 4071.28515625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3603.58984375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4339.45703125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 4119.890625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3992.58984375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 7276.9765625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 7436.46875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 7689.5859375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 7717.51953125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 7481.28515625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 312.875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 22480.7109375, + "entries": 13503625.999999998, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 22135.04296875, + "entries": 13503625.999999998, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 25557.0234375, + "entries": 13503625.999999998, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 7997.078125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 7645.23046875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 8001.9296875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 7997.1640625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 906.0546875, + "entries": 2315223, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1479.26171875, + "entries": 2315223, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1070.5390625, + "entries": 2315223, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 298.7734375, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 2326.64453125, + "entries": 848416.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2246.14453125, + "entries": 848416.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 763.8369140625, + "entries": 848416.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 285.9453125, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1144.341796875, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1170.798828125, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 1395.296875, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 1256.0615234375, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1038.8701171875, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1041.2998046875, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 1382.37890625, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 1208.7939453125, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 839.064453125, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1227.6162109375, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1193.5302734375, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1152.2841796875, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1116.2333984375, + "entries": 423766.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 636.29296875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 3593.4296875, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 4651.4208984375, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 5203.1796875, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 4980.8662109375, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 4053.82421875, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 4081.05859375, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 3083.3994140625, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 2467.345703125, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 2491.5, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 4934.7685546875, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 2482.783203125, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 6681.87109375, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 4093.1015625, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 3623.8291015625, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 3353.7880859375, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 4451.23828125, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 3656.7578125, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 3079.87109375, + "entries": 1636395.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 1483.0859375, + "entries": 1636395.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1647.8994140625, + "entries": 1636395.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1710.3515625, + "entries": 1636395.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 1119.7900390625, + "entries": 1636395.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 1252.638671875, + "entries": 1636395.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 1234.5556640625, + "entries": 1636395.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1785.822265625, + "entries": 1636395.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1687.0859375, + "entries": 1636395.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 1398.2822265625, + "entries": 1636395.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 4328.625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 4132.0625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3721.06640625, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1150.94921875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 14967.3125, + "entries": 6771775.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 13600.173828125, + "entries": 6771775.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 13400.599609375, + "entries": 6771775.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 8778.7265625, + "entries": 6771775.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1823.19921875, + "entries": 6771775.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 10770.35546875, + "entries": 6771775.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 3048.76953125, + "entries": 6771775.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 2818.365234375, + "entries": 6771775.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 3221.16015625, + "entries": 6771775.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 4079.16015625, + "entries": 6771775.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 60.734375, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 12730.318359375, + "entries": 6927482.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 3187.0234375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2758.04296875, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2435.23828125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 6262.34375, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2644.48828125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3520.953125, + "entries": 2315223, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1489.08203125, + "entries": 2315223, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1461.2265625, + "entries": 2315223, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 799.44921875, + "entries": 2315223, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 5825.2685546875, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 5712.60546875, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 5805.0078125, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 5713.9033203125, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 3584.2119140625, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 2305.7509765625, + "entries": 2406163.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 689.27734375, + "entries": 667187.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3245.8603515625, + "entries": 11432871.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1999.30859375, + "entries": 4891503.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 717.013671875, + "entries": 760609.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1046.3837890625, + "entries": 1636395.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 5144.5693359375, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 6957.61328125, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 5616.6748046875, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 4226.8154296875, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 6921.05078125, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 5772.9736328125, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 6269.369140625, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 6249.767578125, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 7197.130859375, + "entries": 2406163.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1813.4765625, + "entries": 2406163.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.23046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_AND": { + "name": "L1_BPTX_LUT1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B1": { + "name": "L1_BPTX_LUT1_B1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B2": { + "name": "L1_BPTX_LUT1_B2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_OR": { + "name": "L1_BPTX_LUT1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_AND": { + "name": "L1_BPTX_LUT2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B1NotB2": { + "name": "L1_BPTX_LUT2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B2NotB1": { + "name": "L1_BPTX_LUT2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_NotOR": { + "name": "L1_BPTX_LUT2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_AND": { + "name": "L1_BPTX_TRIG2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B1NotB2": { + "name": "L1_BPTX_TRIG2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B2NotB1": { + "name": "L1_BPTX_TRIG2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_NotOR": { + "name": "L1_BPTX_TRIG2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.77734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_AND": { + "name": "L1_BRIL_TRIG3_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_delayedAND": { + "name": "L1_BRIL_TRIG3_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_ref": { + "name": "L1_BRIL_TRIG3_ref", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.97265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.97265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.97265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.71484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.45703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.23046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.57421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.4375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.40234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.9375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.4765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.24609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.79296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 248.59375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 244.16015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 250.421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.76953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 245.859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.66796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.61328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.61328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.5625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.09375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.0546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.37890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.8828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.01953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.37109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.70703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 370.7265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.70703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 327.65625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.03125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 333.3828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 274.99609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.08984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 337.984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 376.16796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 401.09375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 391.0078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 387.5390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.78125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.01953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.9765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.1171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.88671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.8515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.98046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.5703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.7578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.08203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.70703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 142.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.72265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.25390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.2421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 143.24609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.73828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.8828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.95703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.13671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.93359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.60546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.22265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.6328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.0078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 181.67578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.24609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 255.19140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.09765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.09765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.42578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 183.8828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 276.1484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 254.6640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 342.640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 332.7421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 300.359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 406.4375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 390.71875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 304.96484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 239.3828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 291.3515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 348.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.6328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 293.2734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 196.1796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 331.7421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.57421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.23046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.3359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.23046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.0546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.12109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.21484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.21484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 165.7109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.19140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 304.87890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.44140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.97265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.47265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.3671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.49609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.82421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.37890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.44921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.90234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.1015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.70703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 167.796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.8046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.55859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.0234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.0625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.82421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.12109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.3203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.20703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.51171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.19140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.66015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.4765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 143.34765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.0625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.71875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.65625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.27734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.3125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 143.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.9296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.18359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.55078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.7734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.4921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.4921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.49609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.4609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.66796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.77734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.37109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.32421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.32421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.49609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.23046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.23046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.56640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.9296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 256.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 256.78125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 309.6875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 312.14453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 383.140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 388.3046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 396.58203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 400.1875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 404.5390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 405.3984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 403.8671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.64453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.46875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.08984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.38671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.07421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.31640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.9453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.5, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.18359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.81640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.8984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 320.3984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 321.1015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 291.3203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.21875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.87109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.28515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.3359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 109.25, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 173.8359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 102.96484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.0546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.98046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.9453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.96875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 86.921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.82421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.30859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.0703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.59765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.9375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.94921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.55078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.91015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.76953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.5390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.67578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.09765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.09765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.87109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.98046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 108.8359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 49.71484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.83203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.8828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 110.796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 175.3828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 104.51171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.6015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.52734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.61328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.4921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 88.46875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.37109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.85546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.6171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.14453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.49609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.09765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.45703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.22265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.64453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.64453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.41796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.52734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 110.3203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.44921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.22265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.1484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.46484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.80859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.17578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.66015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.70703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.36328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 226.18359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 178.015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.78515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.01171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.02734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.39453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.46484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 128.50390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.5546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.01953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.88671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.3984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.49609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.76171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.38671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.6640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.9609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.9296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.2890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.50390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.92578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.3046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.60546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.55078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.69921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.2890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.05859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.65625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.28515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.15234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.5546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.27734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.47265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.25390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.73046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.8125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.32421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.2578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.30859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.34375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.0, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.87109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.6171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 125.5859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.75390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.5625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.4609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 244.7734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 252.3046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.03125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.0546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.87109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 134.5078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.5859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.59765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 230.07421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 326.171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 321.80078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 312.81640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.66796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.30859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 228.80078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 323.1328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 319.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 310.8515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.6640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.37109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 212.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 158.1640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.58203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.69921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.69921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.5546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.67578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.73046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.8515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.84375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.5625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.56640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 301.6640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 256.5078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.78125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.2578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 214.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 176.1484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.2734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 393.7265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 370.72265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 404.8515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 373.9375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 152.234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 258.2734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 353.69921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 303.2109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.5546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.77734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.5703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.70703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 140.796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 218.140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 212.625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.03125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.3203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.28515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.28515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.1484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.38671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.69140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.90234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.92578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.18359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.32421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.32421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.83984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.83984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.64453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.64453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.55078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.55078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.55078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.49609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.83984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.08984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.80078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.8671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.1953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.92578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.71484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.72265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.75, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.09765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.16796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.49609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.37109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.47265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.05859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.33984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.59375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.57421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.09375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.5546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.83203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.84765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.90625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.9140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.86328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.25390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.72265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.66796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.61328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.57421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.08984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.76171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.8046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.25390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.90625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.95703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.1953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.55859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.23046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.82421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.08984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.5, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.5390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.96875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.2578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.3984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.83984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.3984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.08203125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.0, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.0, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.19140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.12109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.1953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.23828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.9140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.0390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.44921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.53125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.91015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.01953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.51171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.4609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.54296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.6328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.5859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.94921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.83984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 141.28515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.93359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.1953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.20703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.8828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.17578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.07421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.6328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.01953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.65625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.32421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.9921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.55859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.6484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.88671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.62109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.1484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.24609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.5234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.13671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.23828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.68359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.33984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.78125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.87109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.6953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.60546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 177.1015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 152.4296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.6171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.69140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.10546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.13671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.1328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.39453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.98046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.98046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.9921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.98828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.04296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.28515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.52734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.3671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.37109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.41796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.41015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.88671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.2734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.3515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.60546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.18359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.82421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.71484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.28515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.8046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.41796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.86328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.1171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.52734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.5859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.44921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.4140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.64453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.71875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.1875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.16015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.16015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.16015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.16796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.4375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.32421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.73046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.69921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.87109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.22265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.40234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.6015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.78515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.0234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.90234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.41796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.20703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.80078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.31640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.4453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.52734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.83984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.96484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 176.08984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.4765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.42578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 173.296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.52734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.98046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.94140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.38671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.59765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.32421875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.23828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.2734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.44140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.19921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.67578125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.72265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.21875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.30859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.41796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.61328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.99609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.671875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.33984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.56640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.91015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.14453125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 165.2109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 139.98828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.40625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.66015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.66796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.66015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.1484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.69921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.83984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.1796875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.6328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.06640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.21875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 181.109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.3828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.12890625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.70703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.70703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.96484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.96484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.96484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.35546875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.61328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.61328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.61328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.9921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.16015625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.98828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.65234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.6640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.6328125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.75390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.52734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.45703125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.97265625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.00390625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.03515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.77734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.77734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.74609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.23046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.55078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.80859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.71484375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.29296875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.19140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.48046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.09765625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.26171875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.25, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.8515625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.28125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.37109375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.48828125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.46875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.25, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.9921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.98046875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.53125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.44921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.859375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.56640625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.52734375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.51953125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain_BRIL": { + "name": "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.93359375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain_copy": { + "name": "HLT_ZeroBias_FirstBXAfterTrain_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.90234375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.7919921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.080078125, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.4140625, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.5, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.69921875, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.58984375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1474609375, + "entries": 2315223, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 55.90625, + "entries": 2315223, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 65.28125, + "entries": 2315223, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 6239.1484375, + "entries": 2315223, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 14983.3779296875, + "entries": 147719.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12073.5, + "entries": 2315223, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 12000.34765625, + "entries": 2315223, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 104860.0498046875, + "entries": 11917046.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 13207.57421875, + "entries": 2315223, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 13302.90234375, + "entries": 2315223, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 87582.2822265625, + "entries": 667187.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 54905.005859375, + "entries": 323686.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 3265.01953125, + "entries": 91370.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 64266.45703125, + "entries": 2646712.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 515697.78515625, + "entries": 11432871.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 44876.0234375, + "entries": 2315223, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 65304.298828125, + "entries": 867652.9999999999, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 43499.45703125, + "entries": 2315223, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 11838.2822265625, + "entries": 338384.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 343136.384765625, + "entries": 4891503.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 48917.3349609375, + "entries": 760609.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 9112.6982421875, + "entries": 848416.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 68063.125, + "entries": 2315223, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12039.28125, + "entries": 2315223, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12451.9375, + "entries": 2315223, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 7276.9765625, + "entries": 2315223, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7436.46875, + "entries": 2315223, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 7689.5859375, + "entries": 2315223, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7717.51953125, + "entries": 2315223, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 7481.28515625, + "entries": 2315223, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 70485.65234375, + "entries": 13503625.999999998, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 7997.078125, + "entries": 2315223, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 7645.23046875, + "entries": 2315223, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 8001.9296875, + "entries": 2315223, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 7997.1640625, + "entries": 2315223, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 906.0546875, + "entries": 2315223, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1479.26171875, + "entries": 2315223, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1070.5390625, + "entries": 2315223, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 15452.515625, + "entries": 423766.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 85966.2216796875, + "entries": 1636395.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 12181.75390625, + "entries": 2315223, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 77658.771484375, + "entries": 6771775.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 12791.052734375, + "entries": 6927482.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 23758.3984375, + "entries": 2315223, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 85915.638671875, + "entries": 2406163.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 36001.6962890625, + "entries": 2315223, + "subs": [ + "L1_AlwaysTrue", + "L1_BPTX_LUT1_AND", + "L1_BPTX_LUT1_B1", + "L1_BPTX_LUT1_B2", + "L1_BPTX_LUT1_OR", + "L1_BPTX_LUT2_AND", + "L1_BPTX_LUT2_B1NotB2", + "L1_BPTX_LUT2_B2NotB1", + "L1_BPTX_LUT2_NotOR", + "L1_BPTX_TRIG2_AND", + "L1_BPTX_TRIG2_B1NotB2", + "L1_BPTX_TRIG2_B2NotB1", + "L1_BPTX_TRIG2_NotOR", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BRIL_TRIG3_AND", + "L1_BRIL_TRIG3_delayedAND", + "L1_BRIL_TRIG3_ref", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_ETT40_BptxAND" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 3611.13671875, + "entries": 2315223, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 49.71484375, + "entries": 2315223, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 51.51953125, + "entries": 2315223, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 41153.216796875, + "entries": 2315223, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "HLT_ZeroBias_FirstBXAfterTrain_copy", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 51.51953125, + "entries": 2315223, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 38, + "allsize": 0.2099609375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2099609375, + "entries": 38, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2099609375, + "entries": 38, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 2370, + "allsize": 2.6689453125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2763671875, + "entries": 2370, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.6904296875, + "entries": 2370, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2275390625, + "entries": 2370, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.22265625, + "entries": 2370, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.251953125, + "entries": 2370, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2763671875, + "entries": 2370, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.6904296875, + "entries": 2370, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2275390625, + "entries": 2370, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.22265625, + "entries": 2370, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.251953125, + "entries": 2370, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30523/DoubleMuonLowMass_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30523/DoubleMuonLowMass_doc.html new file mode 100644 index 000000000..0426e935b --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30523/DoubleMuonLowMass_doc.html @@ -0,0 +1,1661 @@ + + + + Documentation for 035D643C-1D90-414C-B2A2-8F98A94DB814.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30523/DoubleMuonLowMass_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30523/DoubleMuonLowMass_doc.json new file mode 100644 index 000000000..c67711382 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30523/DoubleMuonLowMass_doc.json @@ -0,0 +1,14164 @@ +{ + "filename": "035D643C-1D90-414C-B2A2-8F98A94DB814.root", + "filesize": 1396202.916015625, + "trees": { + "Events": { + "entries": 1900269, + "allsize": 1392462.11328125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 40.4443359375, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 47.9833984375, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 5116.0556640625, + "entries": 1900269, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 75.4287109375, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 136.78125, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 141.19921875, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 139.921875, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 139.98046875, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 140.71875, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 132.671875, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 127.5703125, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 141.51171875, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 125.4375, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 145.84375, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 137.12109375, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 139.80859375, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 136.55859375, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 136.1875, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 144.34375, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 138.1328125, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 147.0390625, + "entries": 10442.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 112.33203125, + "entries": 10442.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 117.37890625, + "entries": 10442.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 107.63671875, + "entries": 10442.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 119.47265625, + "entries": 10442.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 114.91015625, + "entries": 10442.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 110.3125, + "entries": 10442.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 116.9296875, + "entries": 10442.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 115.88671875, + "entries": 10442.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 116.92578125, + "entries": 10442.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 3566.4482421875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3315.578125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2986.6923828125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 3576.26953125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3313.0751953125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2896.896484375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 972.1533203125, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 8246.69921875, + "entries": 9601365.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 22059.5078125, + "entries": 9601365.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 14424.1796875, + "entries": 9601365.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 22211.76171875, + "entries": 9601365.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 15476.3671875, + "entries": 9601365.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 4223.3017578125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 6515.818359375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 4301.1279296875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 6543.89453125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 312.9150390625, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 985.94140625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 985.671875, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 443.765625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 443.1640625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1152.140625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 474.66796875, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 476.28125, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 467.9140625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 469.57421875, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1207.48046875, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 889.34765625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1225.1640625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 894.9140625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1298.7109375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1175.3828125, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 921.46484375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 1250.7265625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 863.796875, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1164.21484375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 955.3359375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 990.03515625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 1135.55859375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1499.40625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1322.62109375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 1358.62890625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 1399.2890625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1515.22265625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1414.81640625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 1249.859375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 1552.9765625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1008.84765625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1009.984375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1042.4375, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 1147.921875, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 992.390625, + "entries": 322666.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 518.3359375, + "entries": 322666.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 498.73828125, + "entries": 322666.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 603.8359375, + "entries": 322666.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 518.77734375, + "entries": 322666.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 517.6796875, + "entries": 322666.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 524.94921875, + "entries": 322666.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1000.19921875, + "entries": 322666.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 899.16015625, + "entries": 322666.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 438.4765625, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 426.34375, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 487.1953125, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 572.1484375, + "entries": 322666.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 488.05078125, + "entries": 322666.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 442.91015625, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 452.578125, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 459.75, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 451.3984375, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 462.2890625, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 467.12109375, + "entries": 322666.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 424.703125, + "entries": 322666.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 89.9013671875, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 151.640625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 178.5703125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 181.3359375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 178.8515625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 179.72265625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 179.8828125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 181.72265625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 167.97265625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 169.28515625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 167.609375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 167.17578125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 169.63671875, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 169.1953125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 168.578125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 166.9609375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 169.30078125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 168.56640625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 177.12890625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 175.36328125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 181.29296875, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 182.25390625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 181.44140625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 181.27734375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 186.453125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 174.015625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 160.86328125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 154.703125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 133.140625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 177.640625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 182.0546875, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 181.30859375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 181.9375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 185.28125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 184.75, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 183.87890625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 176.66015625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 184.4296875, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 183.10546875, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 182.83984375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 177.33984375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 186.81640625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 167.87109375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 156.78515625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 175.30078125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 175.203125, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 174.58984375, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 174.15625, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 158.3046875, + "entries": 21757.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 117.20703125, + "entries": 21757.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 130.2421875, + "entries": 21757.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 130.94140625, + "entries": 21757.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 128.0546875, + "entries": 21757.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 129.85546875, + "entries": 21757.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 138.65625, + "entries": 21757.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 63.875, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 124.3828125, + "entries": 6111.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 117.71875, + "entries": 6111.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 117.75, + "entries": 6111.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 115.0859375, + "entries": 6111.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 123.359375, + "entries": 6111.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 98.90234375, + "entries": 6111.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 597.5166015625, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4854.76953125, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4783.30859375, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 5146.4140625, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 3825.93359375, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3201.66796875, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 5175.00390625, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 4252.0078125, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3443.00390625, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2266.6875, + "entries": 1812809.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1344.59765625, + "entries": 1812809.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1325.2421875, + "entries": 1812809.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1392.30859375, + "entries": 1812809.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1112.078125, + "entries": 1812809.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 872.578125, + "entries": 1812809.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1022.75390625, + "entries": 1812809.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 895.169921875, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 6346.546875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 11533.35546875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 10791.91796875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 11176.6953125, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 10633.30859375, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 15047.04296875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 13707.19921875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 14169.62890625, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 12586.5234375, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 2501.68359375, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 9384.21484375, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 9312.05859375, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 18092.05078125, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 3310.96875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 3311.52734375, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 13493.64453125, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 4953.94921875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 11864.53515625, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 10661.17578125, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 9884.23046875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 17910.97265625, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 13293.2109375, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 14121.546875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 10686.7578125, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 11627.3828125, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 12190.08203125, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 9212.6171875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 11770.40234375, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 9145.9296875, + "entries": 7601023.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2174.15625, + "entries": 7601023.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1724.296875, + "entries": 7601023.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1774.3671875, + "entries": 7601023.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2038.2421875, + "entries": 7601023.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2207.6171875, + "entries": 7601023.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2936.0703125, + "entries": 7601023.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2789.7421875, + "entries": 7601023.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2169.93359375, + "entries": 7601023.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2963.390625, + "entries": 7601023.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 3525.75390625, + "entries": 7601023.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 5574.52734375, + "entries": 7601023.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1377.427734375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 672.0283203125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 676.921875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 680.8916015625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 3550.40234375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 958.6064453125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 3947.4306640625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 3480.6806640625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 3609.0986328125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 3823.5908203125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 4161.033203125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 399.55859375, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 2837.55859375, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 695.890625, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1979.79296875, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1989.01171875, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1421.94921875, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2037.18359375, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1418.44921875, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1933.37109375, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 2695.60546875, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1518.1171875, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2136.55078125, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1233.51953125, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 1912.85546875, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2214.12890625, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1771.87109375, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2120.59375, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 2746.59765625, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 2569.44140625, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 1809.41015625, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1692.08203125, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1499.625, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 2599.4765625, + "entries": 617771.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 757.96875, + "entries": 617771.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 658.3203125, + "entries": 617771.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 757.7578125, + "entries": 617771.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 637.41796875, + "entries": 617771.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 695.78125, + "entries": 617771.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 3695.599609375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 3697.263671875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2387.0048828125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3024.0673828125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2386.8681640625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 4280.9091796875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 6570.8203125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 3517.212890625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2929.8173828125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2919.205078125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 236.4521484375, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1390.71484375, + "entries": 421650.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1477.775390625, + "entries": 421650.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1479.111328125, + "entries": 421650.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 443.9453125, + "entries": 421650.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 444.775390625, + "entries": 421650.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1299.951171875, + "entries": 421650.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 526.2275390625, + "entries": 421650.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 401.4189453125, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 9674.59375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 5517.85546875, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 9651.70703125, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 9968.3515625, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 5958.23828125, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 10494.34375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 9312.01171875, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 6913.8125, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 7332.3515625, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1818.734375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 13479.375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 10756.55078125, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 14346.6796875, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 13116.61328125, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 15014.69921875, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 10508.6484375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 15265.35546875, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 6104.7265625, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 8514.046875, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 9271.09375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 4796.8359375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 6330.31640625, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1947.015625, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 7518.484375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 7168.37109375, + "entries": 4105742.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 2083.83203125, + "entries": 4105742.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2610.51171875, + "entries": 4105742.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 2712.015625, + "entries": 4105742.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 3291.4765625, + "entries": 4105742.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 2086.60546875, + "entries": 4105742.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1563.37109375, + "entries": 4105742.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1491.640625, + "entries": 4105742.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1687.18359375, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1301.96484375, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1201.62890625, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1390.0390625, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1391.6015625, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1359.60546875, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1319.5078125, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2601.078125, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1392.34375, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1495.2421875, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1731.28125, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 2353.31640625, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1391.15625, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 1212.87890625, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 1123.0546875, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 2180.5390625, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1859.7890625, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1394.80078125, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1685.54296875, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1653.71875, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1643.36328125, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1381.609375, + "entries": 4105742.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 296.0068359375, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 845.44140625, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 846.81640625, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 404.51171875, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 403.65625, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 671.05078125, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 832.13671875, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 1116.1484375, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 815.75, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 769.10546875, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 905.0625, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 920.40234375, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1387.6484375, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 1257.4609375, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 1112.8515625, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 1325.75, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 905.76953125, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 929.890625, + "entries": 280713.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 402.52734375, + "entries": 280713.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 435.40625, + "entries": 280713.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 444.3125, + "entries": 280713.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 470.51953125, + "entries": 280713.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 525.0, + "entries": 280713.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 402.4296875, + "entries": 280713.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 732.6640625, + "entries": 280713.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 431.765625, + "entries": 280713.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 441.91015625, + "entries": 280713.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 436.2421875, + "entries": 280713.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 413.95703125, + "entries": 280713.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 421.9453125, + "entries": 280713.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 435.921875, + "entries": 280713.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 387.20703125, + "entries": 280713.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 331.1875, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2781.4296875, + "entries": 1038558.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 3095.1796875, + "entries": 1038558.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 625.30859375, + "entries": 1038558.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 626.203125, + "entries": 1038558.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 803.44921875, + "entries": 1038558.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 807.88671875, + "entries": 1038558.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 865.87890625, + "entries": 1038558.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 626.05078125, + "entries": 1038558.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 4265.443359375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 3548.9169921875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 3548.5439453125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 3549.0693359375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 3548.6455078125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 3547.0458984375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 3555.0009765625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 6587.3544921875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3344.265625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3343.892578125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3345.28125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3344.923828125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3342.71875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3344.322265625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3208.40625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 3567.90625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3314.8916015625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2927.869140625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 3547.6513671875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3339.94140625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3184.1455078125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 5939.01953125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 6029.82421875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 6234.5703125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 6346.3701171875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 6129.3173828125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 246.556640625, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 18456.25390625, + "entries": 11112107.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 18182.55859375, + "entries": 11112107.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 20451.53515625, + "entries": 11112107.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 6450.3798828125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 5579.0693359375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 6535.69921875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 6528.16015625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 649.26171875, + "entries": 1900269, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1198.4658203125, + "entries": 1900269, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 816.8447265625, + "entries": 1900269, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 331.560546875, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 2764.53125, + "entries": 1038558.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2669.3828125, + "entries": 1038558.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 866.34765625, + "entries": 1038558.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 71.4873046875, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 165.8515625, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 166.2890625, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 174.37109375, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 170.46484375, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 156.921875, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 156.42578125, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 174.61328125, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 165.59375, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 145.3671875, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 167.390625, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 164.5390625, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 161.55078125, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 158.84375, + "entries": 23442.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 300.615234375, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 978.09375, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1131.453125, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1210.26171875, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1176.5625, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 990.296875, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 991.48828125, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 975.1953125, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 908.04296875, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 763.421875, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1174.74609375, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 755.60546875, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1377.3984375, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1008.48046875, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 971.0625, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1026.203125, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 975.703125, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 989.34375, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 915.09375, + "entries": 298221.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 503.33984375, + "entries": 298221.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 582.4375, + "entries": 298221.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 545.578125, + "entries": 298221.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 431.62890625, + "entries": 298221.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 475.00390625, + "entries": 298221.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 474.3984375, + "entries": 298221.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 580.0078125, + "entries": 298221.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 555.50390625, + "entries": 298221.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 529.83984375, + "entries": 298221.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 3536.5595703125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3337.994140625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3000.0302734375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 228.271484375, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 985.078125, + "entries": 332825.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 990.1953125, + "entries": 332825.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 990.20703125, + "entries": 332825.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 674.34765625, + "entries": 332825.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 249.44140625, + "entries": 332825.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 806.1953125, + "entries": 332825.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 345.9921875, + "entries": 332825.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 318.83203125, + "entries": 332825.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 324.81640625, + "entries": 332825.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 431.40625, + "entries": 332825.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 43.462890625, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 10398.96875, + "entries": 5699918.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2590.0693359375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2320.767578125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2054.794921875, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 5135.884765625, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2165.7021484375, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2786.064453125, + "entries": 1900269, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1194.9873046875, + "entries": 1900269, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1173.5693359375, + "entries": 1900269, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 601.7138671875, + "entries": 1900269, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 5122.87890625, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 5030.2734375, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 5092.65234375, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 5035.53125, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 3197.25, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 2004.22265625, + "entries": 2139315.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 424.98828125, + "entries": 322666.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2280.22265625, + "entries": 7601023.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1485.5078125, + "entries": 4105742.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 387.4453125, + "entries": 280713.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 415.29296875, + "entries": 298221.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 4527.71875, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 6128.00390625, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 4922.19140625, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 3683.30859375, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 6117.3125, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 5007.66796875, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 5523.578125, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 5505.06640625, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 6383.51171875, + "entries": 2139315.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1575.140625, + "entries": 2139315.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0791015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.384765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.146484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.146484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.7060546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.146484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5869140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.9599609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.7734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.3701171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.3916015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.0712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.1611328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.7822265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.3447265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.7548828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.9736328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.6689453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.5712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.4990234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.2451171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.9716796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.0419921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.8974609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.1435546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.0224609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.056640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.970703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.189453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.8505859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.8154296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.8974609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.0517578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.6669921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.599609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.15234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.2578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 318.888671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.0791015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 238.599609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.0595703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 198.802734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.9404296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.115234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.32421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.3076171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 312.603515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 318.201171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 256.560546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 289.576171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 279.607421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.345703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.876953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.1572265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.0634765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.400390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.509765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.744140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.005859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.919921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.923828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.0703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.119140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.498046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.673828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.583984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.400390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.1982421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5869140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5869140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5869140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5869140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5869140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.400390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.7060546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.400390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.400390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.7060546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.6103515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.6611328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5986328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.6337890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0361328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.5400390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.6923828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.2587890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.8095703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.3017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.3076171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.2099609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.0107421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.033203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.4921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.154296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.130859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.130859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.69140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.94140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.8037109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.4599609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.107421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.0263671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.4970703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.0478515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.837890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.0439453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.2353515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.486328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.927734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.306640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.763671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.5732421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.966796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.61328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.9111328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.6884765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.3935546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.9443359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.1708984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.1484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.08203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.6181640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.1689453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.5283203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.1376953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.146484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.5185546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.9384765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.2978515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.2939453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.67578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.4658203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.8095703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.4619140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.4736328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0595703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.5439453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.2744140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.9541015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.2353515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.0244140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.1181640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.5908203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.5244140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.201171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.908203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.1171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.845703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.64453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.412109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.98828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.361328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.6953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.177734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.3359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.013671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.42578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.369140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.09765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.142578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.94921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.845703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.806640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.5419921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.01171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.9052734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.1630859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.54296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.3232421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.3857421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.7607421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.7724609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.12890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.96484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.5712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.5712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.1640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.6982421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.1494140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 183.8623046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 170.8876953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.3193359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 189.3642578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 220.1474609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.3603515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 196.3505859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.9853515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 170.9677734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.134765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.8837890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.2724609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.560546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.705078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.2490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.5712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.5205078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.7822265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.240234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.4677734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.2724609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.1103515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.9580078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.0400390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 250.048828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 248.8759765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.3916015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.6708984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.6943359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.7333984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 81.7138671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 129.85546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 75.5576171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.16796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.4951171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.388671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.2978515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.1826171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 49.0009765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.2294921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.2236328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.384765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.41015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.1904296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.3349609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.5625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.736328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.12890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.65625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.99609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.130859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.130859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.6904296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.5810546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 80.4638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.9599609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.13671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.8525390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 82.8330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 130.974609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 76.6767578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.287109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.6142578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.5078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.4169921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.3017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 50.1201171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.3486328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.3427734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.384765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.529296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.3095703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.4541015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.681640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.85546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.115234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.8095703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.7001953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 81.5791015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.2734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5341796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1708984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6044921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.37109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3369140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.708984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8759765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2021484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.84375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8798828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.556640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.10546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.376953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.076171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.8017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.2119140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.87109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.58984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.8583984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 294.0947265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 323.447265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.4365234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.751953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4052734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6767578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9677734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1142578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.537109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.83203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.408203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0673828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.876953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.115234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.34765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.28125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.248046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.228515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8759765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6982421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.177734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.197265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1103515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.478515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.583984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8681640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8271484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3134765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.666015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.720703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.4052734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.4326171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.4326171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.568359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.498046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0908203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.9541015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2236328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.669921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.4619140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5009765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.384765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6064453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6142578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6181640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6220703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6220703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.84375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.33203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.12109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.54296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5517578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.763671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.65234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3857421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.826171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.369140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6748046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.4482421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8818359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0185546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.7919921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.388671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8388671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.7919921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.7451171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.4130859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2158203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3642578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0517578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.650390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.6103515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2822265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0791015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.091796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.15625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8095703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.58984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.55078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.931640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.99609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.56640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0146484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7685546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4677734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.73046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.66796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.841796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1123046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.9306640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.673828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.6025390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.841796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.68359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8603515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0595703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.291015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.0537109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2587890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.9453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.84375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.8623046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.974609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.5302734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.431640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.103515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.45703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4951171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.255859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.60546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.9677734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.232421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.32421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1357421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7919921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.552734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.740234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3740234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.646484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.607421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.607421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1162109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.431640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.451171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.3154296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3740234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.474609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.705078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.720703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9443359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9443359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.01171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.01171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.01171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.52734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.53125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7255859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7451171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.8076171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.8349609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.8466796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4052734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1083984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9794921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9755859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9755859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.154296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.220703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.228515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.669921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.466796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.923828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.896484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0986328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0908203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1337890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1884765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1923828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2041015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.03515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2099609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2021484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2646484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2138671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7041015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.392578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8603515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.27734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0126953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9833984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9990234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0029296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0224609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0380859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0654296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0654296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.1162109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0380859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5732421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.8779296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.435546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9072265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0283203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0556640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1025390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0439453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.384765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.36328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.32421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.994140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2099609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.541015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.142578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2197265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.513671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9443359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0595703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7783203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.41015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6064453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7431640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6259765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3916015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5947265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0908203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.666015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.943359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.095703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.0810546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0263671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.59375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.904296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.2890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.306640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8681640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8798828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8837890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.9580078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5556640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.34765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.2109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.21484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3134765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5595703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5986328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3095703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5751953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3212890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5673828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.51171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2509765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.91796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1865234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.376953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.373046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.373046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.73046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.9921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5849609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3388671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7197265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.736328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6142578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.357421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5869140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.91015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.2431640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8427734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.81640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.4833984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.23828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.5888671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.15625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9814453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3994140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3134765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7587890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.388671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5751953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7138671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6904296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.2451171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5576171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.1396484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.4140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.447265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.236328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6748046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.00390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.876953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.130859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.876953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.880859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.939453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.876953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.763671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.380859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.72265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.6171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.154296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.158203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.162109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.158203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.150390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.158203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3408203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5478515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.48046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3212890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3291015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3369140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3408203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.53125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.53125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.11328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.9169921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.9677734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.2861328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.79296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8759765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.314453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.93359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0595703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0966796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0068359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.59375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.9638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.2216796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.2451171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5556640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6767578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6572265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5751953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6787109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.626953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.623046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.623046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.623046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.623046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.662109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.642578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8681640625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.685546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3408203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6904296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.115234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.2412109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.423828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5986328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6826171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.4365234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8095703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.3251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0595703125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.98046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.353515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.771484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.580078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9443359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9287109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3115234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6357421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3994140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7802734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.9111328125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.9658203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0634765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6494140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5712890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1767578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7822265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7119140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8603515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.88671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6298828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.876953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.865234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.384765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.048828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.662109375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.658203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6689453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.384765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6044921875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.09765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.21484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.7265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6494140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.99609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.77734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.4677734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.552734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.9599609375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0751953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.26953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.26171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8759765625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1142578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5966796875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0908203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.689453125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.837890625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5908203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.447265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.30078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.376953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3173828125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3525390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.515625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6904296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.9443359375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.0517578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.1376953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.158203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.892578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0791015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7060546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4521484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4521484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7060546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7060546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0791015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.01171875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1982421875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9638671875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.51953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8251953125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.373046875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3017578125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.130859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3330078125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5908203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5869140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.8203125, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.150390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.146484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.146484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.146484375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3369140625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3291015625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.77734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7734375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.54296875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5546875, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.25, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.50390625, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.58984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.58984375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5859375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.59375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.490234375, + "entries": 1900269, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 40.4443359375, + "entries": 1900269, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 47.9833984375, + "entries": 1900269, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 5116.0556640625, + "entries": 1900269, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 3458.0419921875, + "entries": 10442.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 9868.71875, + "entries": 1900269, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 9786.2412109375, + "entries": 1900269, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 83390.6689453125, + "entries": 9601365.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 10739.1201171875, + "entries": 1900269, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 10845.0224609375, + "entries": 1900269, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 47778.2001953125, + "entries": 322666.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 9219.0537109375, + "entries": 21757.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 761.07421875, + "entries": 6111.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 44615.8720703125, + "entries": 1812809.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 345774.650390625, + "entries": 7601023.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 26938.1123046875, + "entries": 1900269, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 46739.88671875, + "entries": 617771.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 35408.7685546875, + "entries": 1900269, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 13930.775390625, + "entries": 421650.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 273258.4384765625, + "entries": 4105742.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 22514.7138671875, + "entries": 280713.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 10562.57421875, + "entries": 1038558.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 55423.8310546875, + "entries": 1900269, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 9810.6669921875, + "entries": 1900269, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 10071.73828125, + "entries": 1900269, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 5939.01953125, + "entries": 1900269, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6029.82421875, + "entries": 1900269, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 6234.5703125, + "entries": 1900269, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6346.3701171875, + "entries": 1900269, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 6129.3173828125, + "entries": 1900269, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 57336.904296875, + "entries": 11112107.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 6450.3798828125, + "entries": 1900269, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 5579.0693359375, + "entries": 1900269, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 6535.69921875, + "entries": 1900269, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 6528.16015625, + "entries": 1900269, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 649.26171875, + "entries": 1900269, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1198.4658203125, + "entries": 1900269, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 816.8447265625, + "entries": 1900269, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 2199.7099609375, + "entries": 23442.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 23712.099609375, + "entries": 298221.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 9874.583984375, + "entries": 1900269, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 6344.783203125, + "entries": 332825.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 10442.431640625, + "entries": 5699918.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 19421.83984375, + "entries": 1900269, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 75458.0224609375, + "entries": 2139315.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 17640.6748046875, + "entries": 1900269, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT35_BptxAND", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2593.36328125, + "entries": 1900269, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 35.9599609375, + "entries": 1900269, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 37.265625, + "entries": 1900269, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 22789.5732421875, + "entries": 1900269, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 37.265625, + "entries": 1900269, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 7, + "allsize": 0.095703125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.095703125, + "entries": 7, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.095703125, + "entries": 7, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1794, + "allsize": 2.0322265625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2060546875, + "entries": 1794, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.1787109375, + "entries": 1794, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2158203125, + "entries": 1794, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.2109375, + "entries": 1794, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.220703125, + "entries": 1794, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2060546875, + "entries": 1794, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.1787109375, + "entries": 1794, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2158203125, + "entries": 1794, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.2109375, + "entries": 1794, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.220703125, + "entries": 1794, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30524/HTMHT_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30524/HTMHT_doc.html new file mode 100644 index 000000000..4db57e54b --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30524/HTMHT_doc.html @@ -0,0 +1,1661 @@ + + + + Documentation for 0922B35F-D0AC-0846-AA41-4EA12ED9C729.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30524/HTMHT_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30524/HTMHT_doc.json new file mode 100644 index 000000000..da22f5858 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30524/HTMHT_doc.json @@ -0,0 +1,14164 @@ +{ + "filename": "0922B35F-D0AC-0846-AA41-4EA12ED9C729.root", + "filesize": 1526418.25390625, + "trees": { + "Events": { + "entries": 1340908, + "allsize": 1521724.951171875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 40.400390625, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 47.857421875, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 3638.814453125, + "entries": 1340908, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 178.041015625, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 468.1845703125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 534.578125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 471.4306640625, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 472.0283203125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 468.357421875, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 438.8662109375, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 418.2080078125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 535.08984375, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 352.1435546875, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 601.1806640625, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 476.5673828125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 463.3330078125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 478.7001953125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 467.9189453125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 506.806640625, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 470.279296875, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 579.736328125, + "entries": 107278.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 273.6806640625, + "entries": 107278.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 305.521484375, + "entries": 107278.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 241.8720703125, + "entries": 107278.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 314.447265625, + "entries": 107278.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 284.072265625, + "entries": 107278.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 247.8935546875, + "entries": 107278.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 295.1201171875, + "entries": 107278.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 290.4013671875, + "entries": 107278.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 289.3115234375, + "entries": 107278.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 2539.099609375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 2390.125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2070.689453125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 2545.625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 2414.056640625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2034.4140625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 716.150390625, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 6392.0673828125, + "entries": 7186678.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 16618.158203125, + "entries": 7186678.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 10719.794921875, + "entries": 7186678.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 16698.861328125, + "entries": 7186678.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 11643.25390625, + "entries": 7186678.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 3047.669921875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 4680.78515625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 3068.048828125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 4659.83203125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 411.865234375, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 2344.626953125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 2341.46875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 729.431640625, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 729.23828125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2752.2646484375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1192.044921875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1183.0517578125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1138.904296875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 1140.439453125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2891.603515625, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1978.2763671875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2926.9482421875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1996.6328125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 3394.89453125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2792.80859375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2107.45703125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 3083.841796875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 2167.662109375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2766.5322265625, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2256.5576171875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2308.33984375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 2762.0673828125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4146.7509765625, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3903.5634765625, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 3171.6201171875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 3311.0712890625, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 4195.8623046875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4053.4677734375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 3066.740234375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 4207.1982421875, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 2393.5537109375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 2414.1708984375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 2448.11328125, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 2684.06640625, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2251.8896484375, + "entries": 996938.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 912.6318359375, + "entries": 996938.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 826.0634765625, + "entries": 996938.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1212.7333984375, + "entries": 996938.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 913.85546875, + "entries": 996938.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1010.453125, + "entries": 996938.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 953.880859375, + "entries": 996938.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 2213.734375, + "entries": 996938.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1986.484375, + "entries": 996938.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 700.7861328125, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 670.390625, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 819.1220703125, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1136.8505859375, + "entries": 996938.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 825.1416015625, + "entries": 996938.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 681.759765625, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 693.107421875, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 715.5068359375, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 692.62109375, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 712.21484375, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 740.7041015625, + "entries": 996938.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 658.7822265625, + "entries": 996938.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 414.068359375, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1719.1591796875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 2798.216796875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 3302.1640625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 3030.77734375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 3219.4609375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 2836.201171875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 2853.265625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 2730.3056640625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 3108.8291015625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 3071.5302734375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 2769.8271484375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 3112.23046875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 2940.0, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 3151.4541015625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 2664.6240234375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 3104.98046875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 2917.4453125, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 3175.560546875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2918.97265625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 3028.697265625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 3323.7431640625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 3244.2587890625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 3231.6728515625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 3734.5859375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 3002.6396484375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 2469.564453125, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2205.7607421875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1366.5341796875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 2958.822265625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 3298.619140625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 3199.728515625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 3200.142578125, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 3384.5341796875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 3316.7099609375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 3313.7529296875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2895.984375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 3382.7041015625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 3256.9853515625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 3291.5986328125, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 3029.7177734375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 3736.9453125, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 2730.0947265625, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 2292.044921875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 3047.6005859375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 3055.6708984375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 3062.1513671875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 3061.1474609375, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1827.5810546875, + "entries": 1248640.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 862.232421875, + "entries": 1248640.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1126.7119140625, + "entries": 1248640.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1125.4580078125, + "entries": 1248640.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 1067.3798828125, + "entries": 1248640.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 1006.9658203125, + "entries": 1248640.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1664.267578125, + "entries": 1248640.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 71.14453125, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 145.7607421875, + "entries": 9863.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 136.4384765625, + "entries": 9863.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 136.2509765625, + "entries": 9863.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 132.462890625, + "entries": 9863.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 143.53125, + "entries": 9863.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 107.2783203125, + "entries": 9863.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 499.228515625, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4539.166015625, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4455.9423828125, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 4783.216796875, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 3596.4814453125, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2987.2900390625, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 4800.962890625, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 3926.5791015625, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3302.4130859375, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2114.5888671875, + "entries": 1732854.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1149.4228515625, + "entries": 1732854.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1192.8486328125, + "entries": 1732854.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1173.859375, + "entries": 1732854.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 985.42578125, + "entries": 1732854.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 732.6806640625, + "entries": 1732854.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 925.232421875, + "entries": 1732854.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 747.09765625, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 7771.06640625, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 15246.341796875, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 14755.310546875, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 13288.001953125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 13865.736328125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 19369.185546875, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 15873.568359375, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 17729.369140625, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 16770.30859375, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 3139.90625, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 11949.47265625, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 11164.767578125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 23296.419921875, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 5160.595703125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 5166.650390625, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 18087.66796875, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 2666.6875, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 14797.595703125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 13509.3984375, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 12867.033203125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 22954.908203125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 17903.453125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 16864.26953125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 16174.212890625, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 14451.115234375, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 14558.73046875, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 11920.626953125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 14439.58203125, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 11873.337890625, + "entries": 10212180.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2527.16796875, + "entries": 10212180.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1580.65234375, + "entries": 10212180.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2227.064453125, + "entries": 10212180.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2541.896484375, + "entries": 10212180.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2069.853515625, + "entries": 10212180.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2105.515625, + "entries": 10212180.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 1570.5625, + "entries": 10212180.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2436.28515625, + "entries": 10212180.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2085.94140625, + "entries": 10212180.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 3554.5546875, + "entries": 10212180.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 7559.869140625, + "entries": 10212180.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1642.4609375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1521.001953125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1546.671875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1566.201171875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 514.4765625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 261.330078125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 531.783203125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 510.287109375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 518.767578125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 1845.853515625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1874.6328125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 359.19921875, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 3145.439453125, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 909.3076171875, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2158.982421875, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2168.3212890625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1545.884765625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2219.517578125, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1520.8427734375, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2116.7294921875, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 2972.509765625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1646.7021484375, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2321.4931640625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1488.1806640625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2116.37109375, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2744.078125, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2409.015625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2308.6298828125, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 3093.009765625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 2818.28515625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2007.146484375, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1830.744140625, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1695.2607421875, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 2861.3203125, + "entries": 704233.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 761.486328125, + "entries": 704233.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 696.708984375, + "entries": 704233.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 761.1357421875, + "entries": 704233.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 629.546875, + "entries": 704233.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 699.94140625, + "entries": 704233.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 2641.98046875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 2646.94140625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 1809.611328125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 2251.681640625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 1811.080078125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 3064.732421875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 4670.18359375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 2571.734375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2067.314453125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2112.578125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 190.466796875, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1081.255859375, + "entries": 321572.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1151.4033203125, + "entries": 321572.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1151.6337890625, + "entries": 321572.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 355.4169921875, + "entries": 321572.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 356.05859375, + "entries": 321572.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1016.8955078125, + "entries": 321572.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 420.9765625, + "entries": 321572.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 342.685546875, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1913.623046875, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1297.4169921875, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 1919.8984375, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1938.1162109375, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1334.04296875, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 2006.833984375, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1840.1142578125, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1398.6357421875, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1546.9609375, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 667.2197265625, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2510.3837890625, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2283.6845703125, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 2572.2880859375, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2451.3974609375, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 2633.2412109375, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 1992.798828125, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 2648.1513671875, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 1395.0390625, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 1791.669921875, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 1806.30078125, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 1023.443359375, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 1359.1728515625, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 638.4013671875, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 1464.6025390625, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1558.1357421875, + "entries": 604536.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 664.3115234375, + "entries": 604536.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 838.7412109375, + "entries": 604536.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 786.6640625, + "entries": 604536.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 898.9833984375, + "entries": 604536.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 665.0234375, + "entries": 604536.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 583.244140625, + "entries": 604536.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 568.5986328125, + "entries": 604536.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 625.2470703125, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 573.8583984375, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 547.6201171875, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 611.6884765625, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 611.4267578125, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 611.8955078125, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 590.2734375, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 797.7099609375, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 611.185546875, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 606.1962890625, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 589.9365234375, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 647.8203125, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 575.8427734375, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 528.01953125, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 503.4638671875, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 632.193359375, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 605.7412109375, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 605.9326171875, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 589.60546875, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 593.951171875, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 607.595703125, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 611.4716796875, + "entries": 604536.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 464.017578125, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 2790.5703125, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 2791.396484375, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 838.55078125, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 836.927734375, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1830.263671875, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 2667.076171875, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 3999.421875, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 2715.8203125, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 2394.2177734375, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 2676.708984375, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 2832.7177734375, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 5560.2705078125, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 5156.4501953125, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 3972.71484375, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 5481.4462890625, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3049.7431640625, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3131.876953125, + "entries": 1349376.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 835.7705078125, + "entries": 1349376.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 929.6279296875, + "entries": 1349376.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 939.62890625, + "entries": 1349376.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1130.40625, + "entries": 1349376.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1413.9267578125, + "entries": 1349376.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 835.681640625, + "entries": 1349376.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 2126.572265625, + "entries": 1349376.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 906.7607421875, + "entries": 1349376.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 922.521484375, + "entries": 1349376.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 896.630859375, + "entries": 1349376.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 802.6298828125, + "entries": 1349376.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 822.0322265625, + "entries": 1349376.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 908.220703125, + "entries": 1349376.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 730.0458984375, + "entries": 1349376.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 265.546875, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2186.8671875, + "entries": 802464.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 2436.94921875, + "entries": 802464.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 508.3671875, + "entries": 802464.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 509.58203125, + "entries": 802464.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 652.97265625, + "entries": 802464.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 657.6640625, + "entries": 802464.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 705.8046875, + "entries": 802464.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 509.3671875, + "entries": 802464.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 3063.59765625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 2540.513671875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 2540.126953125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 2541.794921875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 2539.880859375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 2542.693359375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 2541.099609375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 4674.705078125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 2424.90234375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 2424.515625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 2421.79296875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 2425.07421875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 2424.00390625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 2428.2265625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2170.88671875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 2542.6640625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 2413.263671875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2068.359375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 2540.603515625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 2421.30859375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2184.935546875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 4255.64453125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 4346.2265625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 4437.46484375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 4495.349609375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 4343.091796875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 112.12109375, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 13270.0126953125, + "entries": 7986488.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 13048.6220703125, + "entries": 7986488.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 15224.04296875, + "entries": 7986488.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 4581.552734375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 4553.998046875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 4611.3359375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 4617.734375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 616.48046875, + "entries": 1340908, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 888.646484375, + "entries": 1340908, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 711.541015625, + "entries": 1340908, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 265.93359375, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 2190.0078125, + "entries": 802464.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2107.84375, + "entries": 802464.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 706.09765625, + "entries": 802464.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 355.248046875, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 2878.099609375, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 2939.177734375, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 3698.4609375, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 3196.8037109375, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2533.1044921875, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 2564.9482421875, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 3660.28125, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 3028.1806640625, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1987.373046875, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 3084.8271484375, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 2995.8857421875, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 2892.9599609375, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 2806.1005859375, + "entries": 1309474.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 289.14453125, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1192.49609375, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1354.1826171875, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1483.98828125, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1428.3232421875, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1184.73046875, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1185.7890625, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1181.9775390625, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1107.705078125, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1006.70703125, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1423.5068359375, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 934.869140625, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1811.43359375, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1213.94921875, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1084.4384765625, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1224.9482421875, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 826.29296875, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1212.7109375, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1127.31640625, + "entries": 394401.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 547.16796875, + "entries": 394401.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 648.8212890625, + "entries": 394401.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 678.46875, + "entries": 394401.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 460.7978515625, + "entries": 394401.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 471.494140625, + "entries": 394401.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 513.9267578125, + "entries": 394401.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 654.787109375, + "entries": 394401.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 628.265625, + "entries": 394401.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 497.6103515625, + "entries": 394401.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 2537.716796875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 2399.46484375, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 2180.279296875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 805.41796875, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 20354.8515625, + "entries": 10573150.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 18363.177734375, + "entries": 10573150.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 18071.583984375, + "entries": 10573150.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 13063.76953125, + "entries": 10573150.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1415.91015625, + "entries": 10573150.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 16132.921875, + "entries": 10573150.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 2937.27734375, + "entries": 10573150.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 2365.521484375, + "entries": 10573150.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1553.44140625, + "entries": 10573150.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 4266.19921875, + "entries": 10573150.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 45.0546875, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 7473.9638671875, + "entries": 4020517.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 1795.345703125, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1545.26171875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1342.94140625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 3654.07421875, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1491.650390625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2019.87890625, + "entries": 1340908, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 892.755859375, + "entries": 1340908, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 874.654296875, + "entries": 1340908, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 501.673828125, + "entries": 1340908, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 3895.6318359375, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 3731.5390625, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 3882.49609375, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 3739.1455078125, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2354.2197265625, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1522.1728515625, + "entries": 1601367.0000000002, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 650.8125, + "entries": 996938.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1937.720703125, + "entries": 10212180.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 607.55078125, + "entries": 604536.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 715.099609375, + "entries": 1349376.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 438.4853515625, + "entries": 394401.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3404.9365234375, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 4598.08984375, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 3721.0966796875, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2776.4833984375, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 4570.35546875, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 3812.7119140625, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4176.935546875, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4148.919921875, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 4764.990234375, + "entries": 1601367.0000000002, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1189.13671875, + "entries": 1601367.0000000002, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.134765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.908203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.94140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.94140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.521484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.94140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.361328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.748046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.314453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.294921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.435546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.349609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.970703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.634765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.935546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.740234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.955078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.212890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.060546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.494140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.537109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.443359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.291015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 246.19140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.60546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.26953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.048828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.564453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.349609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.041015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.349609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.83984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.2109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.96875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.3203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.416015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.38671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.205078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.576171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.43359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.53125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.041015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.39453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.08984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.84375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.05078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.25, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.12890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.80078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.4453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.498046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.107421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.16796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.06640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.16796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.92578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.9609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.81640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.4375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.12109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.23828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 229.14453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.53515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.16796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.068359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.361328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.361328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.361328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.361328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.361328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.16796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.521484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.16796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.16796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.521484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.634765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.111328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.361328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.337890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.806640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.802734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.822265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.404296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.923828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.607421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.748046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.064453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.978515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.27734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.85546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.58984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.03515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.03515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.21875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.552734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.837890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.44921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.615234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.767578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.728515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.03125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.931640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.861328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.98828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.55859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.44921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.55859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.56640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.654296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.84765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.1484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.134765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.478515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.134765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.966796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.212890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.537109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.599609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.01171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.490234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.087890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.998046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.306640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.94140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.873046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.837890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.880859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.091796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.39453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.583984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.435546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.123046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.380859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.908203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.537109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.751953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.380859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.291015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 223.986328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.837890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 219.892578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.572265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.9609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.53125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.99609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.37890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.80859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.59765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.49609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.59375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.66796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 165.9765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.56640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 191.08203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.58984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.21875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.1171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.6875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 206.72265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.869140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.064453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 180.662109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.34375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.935546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 241.583984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 245.201171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.33984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 244.146484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.6484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.36328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.32421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.470703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.455078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.021484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.05078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.134765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.134765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.583984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.841796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.189453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.408203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.150390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.478515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.853515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.958984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.388671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.400390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.986328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.029296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.669921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.13671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.1015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.603515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.474609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.396484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 192.951171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.310546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.69140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.076171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.447265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.759765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.083984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.244140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.96875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.873046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.337890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.220703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.619140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 81.1875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.701171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 75.880859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 115.76171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 75.970703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 73.35546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.384765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 46.7421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.962890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 49.095703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 108.662109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.580078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.361328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.1015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.34765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.458984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.876953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.6796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.76171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.21875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.62109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.96875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.03515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.03515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.615234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.634765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 103.662109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.748046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 82.34765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.861328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 77.041015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 116.921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 77.130859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.544921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 47.90234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.123046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 50.255859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 109.822265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.740234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.521484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.5078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.619140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.037109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.83984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.12890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.1953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.1953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.775390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.794921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 104.814453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.6953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.884765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.728515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.662109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.26953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.845703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.275390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.240234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.115234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.03515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.705078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.99609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.11328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.30859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.6953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.857421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.376953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.3984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.830078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.908203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.423828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.51953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.083984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.736328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.123046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.708984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.28515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.66796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.27734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.794921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.80859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.04296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.37890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.06640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.03515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.615234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.076171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.75390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.099609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.033203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.0390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.576171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.607421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.439453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.5625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.87890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.072265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.322265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.166015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.439453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.76953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.037109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.759765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.455078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.990234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.388671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.712890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.373046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.966796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.70703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.25, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.53515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.7109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.783203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.67578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.595703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.349609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.23828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.88671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.748046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.935546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.740234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.779296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.630859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.21875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.564453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.822265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.40625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.392578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.662109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.134765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.166015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.037109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.3046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.291015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.587890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.919921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.87109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.87109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.64453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.544921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.78515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.23046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.23046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.57421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.96875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.08203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.900390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.294921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.794921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.40234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.900390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.158203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.54296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.798828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.740234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.349609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.19140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.271484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.94921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.423828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.34375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.291015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.77734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.294921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.79296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.42578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.8046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.837890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.205078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.77734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.15625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.431640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.59765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.26953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.162109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.396484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.3515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.568359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.18359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.67578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.67578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.193359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.78515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.8359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.205078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.373046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 187.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.34375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.455078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.455078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.841796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.841796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.37109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.392578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.583984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.716796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.732421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.060546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.154296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.173828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.794921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.841796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.974609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.3828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.87109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.58984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.1796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.78515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.90234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.72265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.94140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.009765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.666015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.927734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.248046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.478515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.189453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.97265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.49609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.466796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.205078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.462890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.091796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.658203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.8046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.935546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.51171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.84375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.53125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.759765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.021484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.478515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.556640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.287109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.146484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.138671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.763671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.673828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.798828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.611328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.501953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.23046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.080078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 237.044921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 190.576171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 179.498046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 171.087890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.029296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.14453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.5390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.9921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.537109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.8671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.49609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.923828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.2421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.841796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.322265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 144.990234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.830078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.326171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.423828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.462890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.962890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.388671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.240234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.5703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.1328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.287109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.154296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.36328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.36328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.779296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.896484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.556640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.056640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.337890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.564453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.51171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.98046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.876953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.873046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.283203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.708984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.630859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.462890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.845703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.322265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.22265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.912109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.193359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.45703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.44921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.076171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.744140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.287109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.279296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.7734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.212890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.583984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.396484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.087890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.21875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.892578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.4765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.298828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.7578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.630859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.720703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.720703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.240234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.455078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.654296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.20703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.615234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.041015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.810546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.34765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.9765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.462890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.29296875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.81640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.80859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.05859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.84765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.00390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.80859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.66796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.3671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.98046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.97265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.05078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.43359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.6875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.013671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.369140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.267578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.310546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.470703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.552734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.412109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.134765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.83984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.78515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.21484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.181640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.638671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.416015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.8125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.849609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.67578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.267578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.330078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.958984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 201.41015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.166015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.236328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.462890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.548828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.037109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.099609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.720703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.962890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.99609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.58203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.58203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.58203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.94140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.98046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.642578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.82421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.599609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.615234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.12890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.603515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.90625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.212890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.966796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.388671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.775390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 151.423828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.736328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.44921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 153.7578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.32421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.70703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.841796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.935546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.322265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.697265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.162109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.498046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.146484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.322265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.126953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.14453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.001953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.259765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.455078125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.896484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.869140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.447265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.880859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.89453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.615234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.80859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.6796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.47265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.97265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.107421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.26171875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.900390625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.94140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.810546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.34375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.990234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.47265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.599609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.041015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2890625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.28515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.26953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.474609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.142578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.923828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.517578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.73828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.427734375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.109375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.09765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.228515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.474609375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.20703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.80859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.166015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.392578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.013671875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.998046875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5546875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.71484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.908203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.521484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.48828125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.294921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.294921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.521484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.521484375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.908203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.134765625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.068359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.751953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.322265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.322265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.03515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.869140625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.853515625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.970703125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.736328125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.51953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.91015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.22265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.0859375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.59375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3203125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.16796875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.572265625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.314453125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.921875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.71875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.42578125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.421875, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.41015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.40625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.3984375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.40625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.40625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.40625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.41015625, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.40234375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.943359375, + "entries": 1340908, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 40.400390625, + "entries": 1340908, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 47.857421875, + "entries": 1340908, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 3638.814453125, + "entries": 1340908, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 10923.7705078125, + "entries": 107278.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 6999.9140625, + "entries": 1340908, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 6994.095703125, + "entries": 1340908, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 62788.2861328125, + "entries": 7186678.000000001, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 7728.455078125, + "entries": 1340908, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 7727.880859375, + "entries": 1340908, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 109372.6630859375, + "entries": 996938.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 149642.08203125, + "entries": 1248640.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 872.8671875, + "entries": 9863.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 41165.3388671875, + "entries": 1732854.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 430559.501953125, + "entries": 10212180.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 12333.466796875, + "entries": 1340908, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 52005.791015625, + "entries": 704233.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 25647.837890625, + "entries": 1340908, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 10993.990234375, + "entries": 321572.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 63226.0517578125, + "entries": 604536.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 68105.7470703125, + "entries": 1349376.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 8433.12109375, + "entries": 802464.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 39703.814453125, + "entries": 1340908, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 7024.287109375, + "entries": 1340908, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 7146.84765625, + "entries": 1340908, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 4255.64453125, + "entries": 1340908, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 4346.2265625, + "entries": 1340908, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 4437.46484375, + "entries": 1340908, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 4495.349609375, + "entries": 1340908, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 4343.091796875, + "entries": 1340908, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 41654.798828125, + "entries": 7986488.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 4581.552734375, + "entries": 1340908, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 4553.998046875, + "entries": 1340908, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 4611.3359375, + "entries": 1340908, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 4617.734375, + "entries": 1340908, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 616.48046875, + "entries": 1340908, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 888.646484375, + "entries": 1340908, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 711.541015625, + "entries": 1340908, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 38621.451171875, + "entries": 1309474.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 27814.3349609375, + "entries": 394401.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 7117.4609375, + "entries": 1340908, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 99330.072265625, + "entries": 10573150.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 7519.0185546875, + "entries": 4020517.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 13616.5625, + "entries": 1340908, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 56790.53515625, + "entries": 1601367.0000000002, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 23738.908203125, + "entries": 1340908, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT35_BptxAND", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2991.16796875, + "entries": 1340908, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 35.748046875, + "entries": 1340908, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 37.1015625, + "entries": 1340908, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 26838.740234375, + "entries": 1340908, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 37.1015625, + "entries": 1340908, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 6, + "allsize": 0.091796875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.091796875, + "entries": 6, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.091796875, + "entries": 6, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1743, + "allsize": 2.1142578125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2021484375, + "entries": 1743, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.2685546875, + "entries": 1743, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2119140625, + "entries": 1743, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.2109375, + "entries": 1743, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.220703125, + "entries": 1743, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2021484375, + "entries": 1743, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.2685546875, + "entries": 1743, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2119140625, + "entries": 1743, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.2109375, + "entries": 1743, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.220703125, + "entries": 1743, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30525/JetHT_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30525/JetHT_doc.html new file mode 100644 index 000000000..43cf2880b --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30525/JetHT_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for CD205112-3009-AB40-ACE1-9C3C31285B4A.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30525/JetHT_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30525/JetHT_doc.json new file mode 100644 index 000000000..799a9a515 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30525/JetHT_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "CD205112-3009-AB40-ACE1-9C3C31285B4A.root", + "filesize": 138145.1845703125, + "trees": { + "Events": { + "entries": 107505, + "allsize": 134970.7529296875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 3.634765625, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 3.958984375, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 290.201171875, + "entries": 107505, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 14.021484375, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 35.5556640625, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 39.875, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 35.5478515625, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 35.5400390625, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 35.802734375, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 33.5185546875, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 32.5048828125, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 39.9765625, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 26.7724609375, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 45.3134765625, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 36.1845703125, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 34.3330078125, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 36.4541015625, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 35.9033203125, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 38.396484375, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 35.189453125, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 42.482421875, + "entries": 7602.999999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 21.1337890625, + "entries": 7602.999999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 23.587890625, + "entries": 7602.999999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 18.7978515625, + "entries": 7602.999999999999, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 24.103515625, + "entries": 7602.999999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 21.673828125, + "entries": 7602.999999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 18.9404296875, + "entries": 7602.999999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 22.3740234375, + "entries": 7602.999999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 21.8935546875, + "entries": 7602.999999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 21.8115234375, + "entries": 7602.999999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 205.201171875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 192.3984375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 173.076171875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 205.55859375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 192.580078125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 170.87109375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 57.197265625, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 477.724609375, + "entries": 519830.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 1227.44140625, + "entries": 519830.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 793.3984375, + "entries": 519830.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 1231.7578125, + "entries": 519830.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 856.26953125, + "entries": 519830.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 245.291015625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 375.6875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 247.509765625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 374.421875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 35.392578125, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 205.384765625, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 205.14453125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 61.431640625, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 61.40625, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 239.0185546875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 113.392578125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 113.3134765625, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 110.431640625, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 110.689453125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 251.607421875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 171.3544921875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 254.1591796875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 172.4453125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 290.68359375, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 243.015625, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 185.29296875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 268.970703125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 191.087890625, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 239.6845703125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 198.6396484375, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 202.57421875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 242.7861328125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 367.7705078125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 353.7431640625, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 270.7412109375, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 279.2626953125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 372.1787109375, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 364.2216796875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 267.240234375, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 370.2373046875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 208.1669921875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 209.0185546875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 211.984375, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 231.64453125, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 192.4482421875, + "entries": 87895.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 77.5458984375, + "entries": 87895.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 67.4072265625, + "entries": 87895.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 103.3427734375, + "entries": 87895.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 77.6875, + "entries": 87895.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 87.15625, + "entries": 87895.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 80.892578125, + "entries": 87895.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 189.87109375, + "entries": 87895.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 169.328125, + "entries": 87895.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 59.2822265625, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 55.296875, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 69.0556640625, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 100.9326171875, + "entries": 87895.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 69.2236328125, + "entries": 87895.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 55.880859375, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 56.685546875, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 58.5849609375, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 56.97265625, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 58.6953125, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 61.2666015625, + "entries": 87895.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 57.0283203125, + "entries": 87895.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 35.158203125, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 188.0888671875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 352.103515625, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 392.54296875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 347.29296875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 381.40625, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 362.224609375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 360.90234375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 363.3017578125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 374.9580078125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 372.3818359375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 352.8115234375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 375.90234375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 360.14453125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 378.3955078125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 351.9951171875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 372.89453125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 349.91015625, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 384.193359375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 331.3671875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 352.876953125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 399.4033203125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 385.5634765625, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 384.9970703125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 442.125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 346.4912109375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 352.037109375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 296.1513671875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 237.9599609375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 342.728515625, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 388.169921875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 376.435546875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 377.736328125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 401.2255859375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 391.8427734375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 388.8935546875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 331.47265625, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 399.8486328125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 383.9111328125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 385.8525390625, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 357.0732421875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 436.55859375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 327.2939453125, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 228.259765625, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 352.5537109375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 351.7529296875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 349.2060546875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 349.4482421875, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 230.0380859375, + "entries": 156579.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 79.759765625, + "entries": 156579.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 114.4111328125, + "entries": 156579.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 114.2861328125, + "entries": 156579.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 109.7626953125, + "entries": 156579.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 104.5166015625, + "entries": 156579.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 185.322265625, + "entries": 156579.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 8.2890625, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 18.8583984375, + "entries": 1947.9999999999998, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 17.2041015625, + "entries": 1947.9999999999998, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 17.1220703125, + "entries": 1947.9999999999998, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 16.193359375, + "entries": 1947.9999999999998, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 18.05078125, + "entries": 1947.9999999999998, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 11.6181640625, + "entries": 1947.9999999999998, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 37.673828125, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 289.568359375, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 285.3701171875, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 303.236328125, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 236.4248046875, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 201.1474609375, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 303.455078125, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 251.5029296875, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 216.7666015625, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 149.4775390625, + "entries": 102761.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 82.7763671875, + "entries": 102761.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 87.7060546875, + "entries": 102761.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 84.34765625, + "entries": 102761.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 72.2421875, + "entries": 102761.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 56.1298828125, + "entries": 102761.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 69.287109375, + "entries": 102761.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 61.7109375, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 589.244140625, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1233.7236328125, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1224.8916015625, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 1098.5419921875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 1155.2060546875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 1443.6806640625, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 1182.8427734375, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 1332.8310546875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 1225.2734375, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 250.08203125, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 963.826171875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 863.3798828125, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 1738.3154296875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 244.3095703125, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 244.7080078125, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 1365.462890625, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 205.677734375, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 1102.5810546875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 984.62890625, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 970.6416015625, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 1698.6357421875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 1351.01953125, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 1161.751953125, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 1232.9599609375, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1048.4150390625, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 1060.458984375, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 892.7138671875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 1054.107421875, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 883.3818359375, + "entries": 749311.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 205.373046875, + "entries": 749311.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 128.337890625, + "entries": 749311.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 130.8154296875, + "entries": 749311.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 157.6845703125, + "entries": 749311.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 156.5712890625, + "entries": 749311.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 176.509765625, + "entries": 749311.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 135.876953125, + "entries": 749311.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 195.7578125, + "entries": 749311.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 175.0078125, + "entries": 749311.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 256.552734375, + "entries": 749311.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 584.9462890625, + "entries": 749311.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 117.81640625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 110.685546875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 112.60546875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 113.837890625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 38.85546875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 17.212890625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 40.373046875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 38.658203125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 39.240234375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 134.771484375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 136.75, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 30.7890625, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 276.830078125, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 91.0146484375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 188.927734375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 190.6884765625, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 135.830078125, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 194.818359375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 132.8154296875, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 186.6123046875, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 259.849609375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 145.1435546875, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 203.7353515625, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 133.9892578125, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 186.359375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 250.359375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 226.7265625, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 202.6455078125, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 273.849609375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 249.38671875, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 176.318359375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 160.552734375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 149.0380859375, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 252.07421875, + "entries": 62435.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 65.720703125, + "entries": 62435.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 61.072265625, + "entries": 62435.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 65.6787109375, + "entries": 62435.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 54.3125, + "entries": 62435.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 60.41796875, + "entries": 62435.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 212.95703125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 213.171875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 150.408203125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 184.150390625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 150.240234375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 247.611328125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 374.19921875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 203.48046875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 172.537109375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 170.22265625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 25.712890625, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 150.943359375, + "entries": 45978.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 160.9697265625, + "entries": 45978.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 161.1689453125, + "entries": 45978.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 46.9208984375, + "entries": 45978.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 46.94140625, + "entries": 45978.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 141.9267578125, + "entries": 45978.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 56.46875, + "entries": 45978.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 31.658203125, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 191.154296875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 128.2919921875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 191.7265625, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 193.5771484375, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 131.6796875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 202.451171875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 183.6455078125, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 142.1669921875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 153.16796875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 62.1689453125, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 267.0244140625, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 254.1767578125, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 270.8857421875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 264.3818359375, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 274.2607421875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 199.904296875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 272.4091796875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 139.5546875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 181.228515625, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 178.76953125, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 93.814453125, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 137.3056640625, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 59.2763671875, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 135.9072265625, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 149.6787109375, + "entries": 63585.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 62.1787109375, + "entries": 63585.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 78.8974609375, + "entries": 63585.99999999999, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 73.484375, + "entries": 63585.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 85.9287109375, + "entries": 63585.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 62.33203125, + "entries": 63585.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 53.779296875, + "entries": 63585.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 54.0634765625, + "entries": 63585.99999999999, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 56.3525390625, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 51.7529296875, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 48.4755859375, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 55.9775390625, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 55.3837890625, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 56.2861328125, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 54.60546875, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 79.5732421875, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 55.330078125, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 54.2392578125, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 52.6005859375, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 56.35546875, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 50.4287109375, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 45.5078125, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 44.9873046875, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 53.982421875, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 52.6201171875, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 55.9951171875, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 52.2421875, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 52.912109375, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 54.087890625, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 56.2607421875, + "entries": 63585.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 39.560546875, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 245.53125, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 245.744140625, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 69.51953125, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 69.369140625, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 157.978515625, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 230.607421875, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 344.9765625, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 234.8203125, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 208.6435546875, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 219.931640625, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 236.8935546875, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 484.3837890625, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 465.1259765625, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 342.21875, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 477.9267578125, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 260.8837890625, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 267.912109375, + "entries": 117503.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 69.2666015625, + "entries": 117503.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 75.1904296875, + "entries": 117503.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 76.09765625, + "entries": 117503.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 96.07421875, + "entries": 117503.00000000001, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 119.7509765625, + "entries": 117503.00000000001, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 69.259765625, + "entries": 117503.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 176.255859375, + "entries": 117503.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 76.5146484375, + "entries": 117503.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 76.486328125, + "entries": 117503.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 74.826171875, + "entries": 117503.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 64.1689453125, + "entries": 117503.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 65.6181640625, + "entries": 117503.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 75.310546875, + "entries": 117503.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 62.5888671875, + "entries": 117503.00000000001, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 36.75390625, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 300.5966796875, + "entries": 113379.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 334.5263671875, + "entries": 113379.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 64.484375, + "entries": 113379.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 64.5361328125, + "entries": 113379.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 83.7734375, + "entries": 113379.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 84.3974609375, + "entries": 113379.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 90.9150390625, + "entries": 113379.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 64.556640625, + "entries": 113379.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 246.92578125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 204.513671875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 204.478515625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 204.478515625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 204.490234375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 204.521484375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 204.826171875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 374.091796875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 192.7890625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 192.75390625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 192.5703125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 193.0390625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 192.73828125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 193.72265625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 186.4140625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 205.49609375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 192.474609375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 172.23046875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 204.537109375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 193.359375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 186.892578125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 330.9609375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 345.5234375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 360.58984375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 365.595703125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 347.787109375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 8.9609375, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 1064.2392578125, + "entries": 640929.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 1041.9775390625, + "entries": 640929.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 1239.29296875, + "entries": 640929.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 372.576171875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 365.978515625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 374.3359375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 373.8671875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 54.9609375, + "entries": 107505, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 73.580078125, + "entries": 107505, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 61.005859375, + "entries": 107505, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 36.7890625, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 298.421875, + "entries": 113379.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 287.67578125, + "entries": 113379.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 90.9248046875, + "entries": 113379.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 36.021484375, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 513.162109375, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 525.787109375, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 673.45703125, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 576.802734375, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 444.806640625, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 447.119140625, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 665.39453125, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 536.400390625, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 333.060546875, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 557.787109375, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 537.048828125, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 514.728515625, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 495.919921875, + "entries": 263908.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 22.48828125, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 86.93359375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 97.2646484375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 104.87109375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 101.7216796875, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 84.77734375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 84.81640625, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 85.9931640625, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 81.037109375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 74.171875, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 101.4365234375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 68.580078125, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 126.984375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 87.4609375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 77.6806640625, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 88.2412109375, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 56.98828125, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 88.76171875, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 82.60546875, + "entries": 26868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 41.0234375, + "entries": 26868.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 48.1884765625, + "entries": 26868.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 50.45703125, + "entries": 26868.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 34.4931640625, + "entries": 26868.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 34.552734375, + "entries": 26868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 38.5908203125, + "entries": 26868.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 48.048828125, + "entries": 26868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 45.33984375, + "entries": 26868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 35.8955078125, + "entries": 26868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 204.267578125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 197.0625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 182.228515625, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 70.27734375, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 1869.671875, + "entries": 943430.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 1647.7333984375, + "entries": 943430.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 1623.0927734375, + "entries": 943430.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 1111.615234375, + "entries": 943430.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 114.25, + "entries": 943430.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 1373.919921875, + "entries": 943430.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 245.890625, + "entries": 943430.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 199.9580078125, + "entries": 943430.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 121.556640625, + "entries": 943430.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 368.18359375, + "entries": 943430.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 3.875, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 601.1376953125, + "entries": 322421.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 144.982421875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 124.21484375, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 107.67578125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 293.9921875, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 119.283203125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 168.98828125, + "entries": 107505, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 70.513671875, + "entries": 107505, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 69.345703125, + "entries": 107505, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 45.439453125, + "entries": 107505, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 415.8974609375, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 396.55078125, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 415.25, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 397.4345703125, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 240.7275390625, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 152.1728515625, + "entries": 178227.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 54.5390625, + "entries": 87895.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 156.0048828125, + "entries": 749311.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 54.51171875, + "entries": 63585.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 59.166015625, + "entries": 117503.00000000001, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 33.1416015625, + "entries": 26868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 358.3662109375, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 490.08984375, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 396.7216796875, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 295.1240234375, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 486.51171875, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 408.8603515625, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 445.599609375, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 442.982421875, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 510.263671875, + "entries": 178227.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 119.71875, + "entries": 178227.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.326171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.23828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.23828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.23828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.220703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.294921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.544921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.505859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.388671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.201171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.982421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.681640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.388671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.646484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.119140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.955078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.162109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.216796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.263671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.314453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.314453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.341796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.60546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.3125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.62890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.322265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.3046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.20703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.66796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.28125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.646484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.833984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.9765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.0703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.361328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.82421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.39453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.0625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.07421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.23828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.630859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.658203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.16796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.16796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.16796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.48828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.98828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.2265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.54296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.7578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.2421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.68359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.1640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.16796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.431640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.16796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.16796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.16796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.123046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.888671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.083984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.990234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.267578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.470703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.947265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.267578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.853515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.771484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.728515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.87109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.18359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.7734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.728515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.173828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.25390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.775390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.302734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.90625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.908203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.896484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.94140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.72265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.4453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.58203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.55078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.888671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.93359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.62109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.873046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.626953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.794921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.716796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.978515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.259765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.833984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.240234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.23828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.029296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.888671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.361328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.966796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.298828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.521484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.384765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.451171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.205078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.142578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.169921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.208984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.220703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.228515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.251953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.24609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.98828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.0625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.8046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.92578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.04296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.1484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.15234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.01171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.99609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.12109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.1171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.416015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.4140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.369140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.376953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.771484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.130859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.830078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.4140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.07421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.0546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.548828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.50390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.927734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.603515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.876953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.580078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.544921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.240234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.189453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.931640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.892578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.24609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.404296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.369140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.39453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.58984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.298828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.076171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.845703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.298828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.892578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.314453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.435546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.080078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.005859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.572265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.4140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.806640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.771484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.7890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.591796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.6875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.880859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.55859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.556640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.798828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 9.052734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.544921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.435546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.34765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.716796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.478515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.34765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.3984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.4375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.6953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.572265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.646484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 7.189453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.220703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 5.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.912109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 5.876953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.89453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 5.697265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.79296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.986328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.6640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.662109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.904296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 9.158203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.650390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.541015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.822265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.583984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.50390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.80078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.677734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.751953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 7.294921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.94140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.193359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.189453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.107421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.87109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.408203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.41015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.341796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.712890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.435546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.138671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.55859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.3125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.708984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.693359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.55859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.580078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.869140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.642578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.431640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.412109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.443359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.404296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.677734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.58984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.18359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.572265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.755859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.96484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.021484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.904296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.90234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.07421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.205078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.314453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.314453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.96484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.849609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.361328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.966796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.98828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.572265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.048828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.732421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.826171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.900390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.169921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.353515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.6484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.79296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.82421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.8515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.48828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.951171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.783203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.220703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.009765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.021484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.220703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.009765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.25390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.021484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.568359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.70703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.576171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.572265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.568359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.70703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.580078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.576171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.326171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.38671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.38671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.470703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.90234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.87890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.947265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.634765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.521484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.27734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.306640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.705078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.68359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.283203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.33203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.62890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.634765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.349609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.70703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.689453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.798828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.69921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.013671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.0234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.880859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.90234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.18359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.21484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.326171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.365234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.19140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.337890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.37109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.37109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.923828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.900390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.09375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.736328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.94140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.94140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.787109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.03515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.095703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.720703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.49609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.4296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.501953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.501953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.28515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.4921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.224609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.419921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.123046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.310546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.068359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.748046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.794921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.576171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.939453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.623046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.45703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.86328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.33203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.51171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.44140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.8203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.71875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.677734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.748046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.431640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.759765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.521484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.833984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.66015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.49609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.232421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.376953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.263671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.314453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.080078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.76171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.443359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.26953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.1484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.08203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.185546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.158203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.923828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.119140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.353515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.541015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.962890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.794921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.662109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.111328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.857421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.677734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.599609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.560546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.591796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.873046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.837890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.48046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.685546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.40234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.451171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.53125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.501953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.095703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.818359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.6171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.935546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.787109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.248046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.619140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.751953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.451171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.8671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.68359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.189453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.353515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.21875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.05078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.18359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.916015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.935546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.587890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.224609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.751953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.8984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.47265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.51171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.833984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.771484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.861328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.896484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.912109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.990234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.908203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.03515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.91796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.326171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.712890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.73828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.74609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.73828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.52734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.619140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.044921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.693359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.927734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.08203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.884765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.751953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.05078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.09765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.986328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.029296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.97265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.966796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.95703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.958984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.94921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.873046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.822265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.810546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.884765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.69140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.576171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.61328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.572265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.095703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.076171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.646484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.19921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.361328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.70703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.58984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.52734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.59375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.59765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.6015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.58984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.5390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.43359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.2109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.0234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.23828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.25, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.33984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.423828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.763671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.41015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.541015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.544921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.548828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.603515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.654296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.05859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.43359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.435546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.486328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.099609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.49609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.408203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.384765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.376953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.60546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.119140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.001953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.634765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.748046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.150390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.275390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.974609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.013671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.69921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.66015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.66015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.66015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.79296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.40625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.025390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.029296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.572265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.80078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.943359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.90625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.888671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.912109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.642578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.677734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.529296875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.205078125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.01171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.85546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.5234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.501953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.783203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.138671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.759765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.416015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.708984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.744140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.998046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.86328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.607421875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.544921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.244140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.947265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.431640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.314453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.962890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.58984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.85546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.52734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.349609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.509765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.44921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.466796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.75, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.150390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.18359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.294921875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.611328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.677734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.509765625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.845703125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.763671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.39453125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.47265625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.427734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.537109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.041015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.62890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.12109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.337890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.267578125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.826171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.802734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.326171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.361328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.361328125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.291015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.326171875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.255859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4140625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.431640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.240234375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.396484375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.73046875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.51953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.380859375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.298828125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.216796875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.212890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.83203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.74609375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.33203125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2890625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.75390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.65625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.251953125, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.912109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.56640625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.28515625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.40625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.41015625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5546875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.58984375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.65625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.7109375, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.671875, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.390625, + "entries": 107505, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 3.634765625, + "entries": 107505, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 3.958984375, + "entries": 107505, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 290.201171875, + "entries": 107505, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 827.6884765625, + "entries": 7602.999999999999, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 570.67578125, + "entries": 107505, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 569.009765625, + "entries": 107505, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 4643.7890625, + "entries": 519830.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 620.978515625, + "entries": 107505, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 621.931640625, + "entries": 107505, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 9533.2412109375, + "entries": 87895.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 17843.94140625, + "entries": 156579.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 107.3359375, + "entries": 1947.9999999999998, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 2727.1123046875, + "entries": 102761.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 32324.4423828125, + "entries": 749311.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 900.806640625, + "entries": 107505, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 4605.556640625, + "entries": 62435.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 2078.978515625, + "entries": 107505, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 1504.8642578125, + "entries": 45978.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 6211.3994140625, + "entries": 63585.99999999999, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 5838.6025390625, + "entries": 117503.00000000001, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 1124.5400390625, + "entries": 113379.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 3192.353515625, + "entries": 107505, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 570.201171875, + "entries": 107505, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 584.7890625, + "entries": 107505, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 330.9609375, + "entries": 107505, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 345.5234375, + "entries": 107505, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 360.58984375, + "entries": 107505, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 365.595703125, + "entries": 107505, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 347.787109375, + "entries": 107505, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 3354.470703125, + "entries": 640929.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 372.576171875, + "entries": 107505, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 365.978515625, + "entries": 107505, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 374.3359375, + "entries": 107505, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 373.8671875, + "entries": 107505, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 54.9609375, + "entries": 107505, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 73.580078125, + "entries": 107505, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 61.005859375, + "entries": 107505, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 6857.49609375, + "entries": 263908.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 2012.5458984375, + "entries": 26868.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 583.55859375, + "entries": 107505, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 8746.1494140625, + "entries": 943430.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 605.0126953125, + "entries": 322421.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 1098.99609375, + "entries": 107505, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 6017.7109375, + "entries": 178227.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 2277.697265625, + "entries": 107505, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT35_BptxAND", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 240.109375, + "entries": 107505, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 3.220703125, + "entries": 107505, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 3.34375, + "entries": 107505, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 2440.302734375, + "entries": 107505, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 3.34375, + "entries": 107505, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 2, + "allsize": 0.076171875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.076171875, + "entries": 2, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.076171875, + "entries": 2, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 37, + "allsize": 0.9072265625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.1630859375, + "entries": 37, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.2333984375, + "entries": 37, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.1728515625, + "entries": 37, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.16796875, + "entries": 37, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.169921875, + "entries": 37, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.1630859375, + "entries": 37, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.2333984375, + "entries": 37, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.1728515625, + "entries": 37, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.16796875, + "entries": 37, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.169921875, + "entries": 37, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30526/MET_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30526/MET_doc.html new file mode 100644 index 000000000..79f0b0053 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30526/MET_doc.html @@ -0,0 +1,1643 @@ + + + + Documentation for 498DAB22-324C-A744-9F94-B9403276F9FC.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30526/MET_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30526/MET_doc.json new file mode 100644 index 000000000..949c18205 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30526/MET_doc.json @@ -0,0 +1,13984 @@ +{ + "filename": "498DAB22-324C-A744-9F94-B9403276F9FC.root", + "filesize": 261156.265625, + "trees": { + "Events": { + "entries": 284924, + "allsize": 258116.166015625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 4.0888671875, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 5.4912109375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 769.2744140625, + "entries": 284924, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 31.4912109375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 77.0546875, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 94.26171875, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 81.12109375, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 81.38671875, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 74.6953125, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 67.93359375, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 67.40625, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 94.125, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 57.125, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 111.6640625, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 81.15234375, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 83.59765625, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 78.80859375, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 75.0078125, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 84.4296875, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 80.75390625, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 108.95703125, + "entries": 21838.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 43.703125, + "entries": 21838.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 48.5, + "entries": 21838.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 38.12890625, + "entries": 21838.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 49.8125, + "entries": 21838.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 47.37890625, + "entries": 21838.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 41.421875, + "entries": 21838.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 48.9375, + "entries": 21838.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 49.05078125, + "entries": 21838.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 49.375, + "entries": 21838.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 526.8388671875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 496.96484375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 439.6142578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 527.8828125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 499.9462890625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 433.736328125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 149.4189453125, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1591.55859375, + "entries": 1788050.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 4211.81640625, + "entries": 1788050.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 2711.55859375, + "entries": 1788050.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 4257.77734375, + "entries": 1788050.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 2955.1796875, + "entries": 1788050.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 623.3525390625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 1001.701171875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 628.9951171875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 999.66015625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 62.1494140625, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 300.1484375, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 299.6875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 104.671875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 104.59765625, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 351.046875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 161.0859375, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 159.0703125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 151.9140625, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 151.43359375, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 367.0546875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 257.89453125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 372.109375, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 260.42578125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 422.34765625, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 357.49609375, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 272.875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 390.7421875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 273.55078125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 354.15625, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 289.94921875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 300.12109375, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 352.1640625, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 498.6328125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 450.70703125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 417.921875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 429.953125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 507.8203125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 479.703125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 388.125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 527.71484375, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 304.75390625, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 308.6171875, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 314.140625, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 344.97265625, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 304.36328125, + "entries": 120999.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 126.93359375, + "entries": 120999.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 122.8828125, + "entries": 120999.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 161.8515625, + "entries": 120999.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 127.109375, + "entries": 120999.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 136.25390625, + "entries": 120999.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 132.6796875, + "entries": 120999.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 289.71484375, + "entries": 120999.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 261.01953125, + "entries": 120999.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 93.81640625, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 92.51171875, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 108.90234375, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 144.64453125, + "entries": 120999.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 108.61328125, + "entries": 120999.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 95.28125, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 97.0390625, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 99.6796875, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 96.2265625, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 98.8203125, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 101.78515625, + "entries": 120999.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 90.48046875, + "entries": 120999.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 63.5224609375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 189.57421875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 316.5078125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 361.0859375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 335.21484375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 351.375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 320.99609375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 322.12890625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 317.6796875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 345.5078125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 340.94140625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 314.265625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 345.21484375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 328.09765625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 347.1015625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 307.703125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 343.76953125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 323.171875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 350.18359375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 317.6640625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 337.67578125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 364.98046875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 354.86328125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 353.80859375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 407.37890625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 328.66015625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 303.25, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 260.46484375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 182.359375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 326.31640625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 361.82421875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 351.2421875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 353.5703125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 370.44921875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 362.96875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 360.26171875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 316.53515625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 369.3203125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 356.64453125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 358.23046875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 332.78515625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 404.265625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 307.3828125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 242.0234375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 335.15625, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 334.7734375, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 333.671875, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 331.67578125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 230.828125, + "entries": 130563.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 113.84375, + "entries": 130563.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 134.48046875, + "entries": 130563.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 134.21875, + "entries": 130563.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 124.73046875, + "entries": 130563.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 128.51953125, + "entries": 130563.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 189.890625, + "entries": 130563.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 13.7734375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 30.0859375, + "entries": 3662.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 26.765625, + "entries": 3662.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 26.7265625, + "entries": 3662.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 25.23046875, + "entries": 3662.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 28.54296875, + "entries": 3662.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 16.5859375, + "entries": 3662.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 108.4072265625, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1152.734375, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1130.33984375, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 1219.68359375, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 896.78515625, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 743.984375, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 1225.6640625, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 1000.41015625, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 809.98828125, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 502.55078125, + "entries": 456026.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 274.33203125, + "entries": 456026.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 269.0859375, + "entries": 456026.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 282.3359375, + "entries": 456026.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 215.859375, + "entries": 456026.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 158.32421875, + "entries": 456026.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 193.75390625, + "entries": 456026.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 153.525390625, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 1342.43359375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 2469.896484375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 2284.736328125, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 2134.861328125, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 2173.435546875, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 3230.373046875, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 2710.083984375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 2972.740234375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 2768.73046875, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 534.33984375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 2014.8671875, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 1940.634765625, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 3901.626953125, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 785.349609375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 784.658203125, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 2993.53515625, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 674.6640625, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 2527.568359375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 2259.99609375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 2170.732421875, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 3858.837890625, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 2958.49609375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 3015.86328125, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 2334.236328125, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 2487.107421875, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 2509.609375, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 2006.888671875, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 2492.55078125, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 2015.345703125, + "entries": 1669126.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 441.3828125, + "entries": 1669126.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 306.38671875, + "entries": 1669126.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 338.873046875, + "entries": 1669126.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 397.294921875, + "entries": 1669126.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 409.263671875, + "entries": 1669126.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 479.88671875, + "entries": 1669126.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 372.02734375, + "entries": 1669126.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 430.96484375, + "entries": 1669126.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 471.16796875, + "entries": 1669126.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 726.96484375, + "entries": 1669126.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1244.5927734375, + "entries": 1669126.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 281.392578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 183.8017578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 186.0625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 187.6298828125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 264.44921875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 135.6806640625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 276.6025390625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 261.1064453125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 267.2587890625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 395.5908203125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 406.267578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 60.9375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 526.45703125, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 142.3671875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 355.359375, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 356.640625, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 257.35546875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 364.91796875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 250.94140625, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 350.03515625, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 501.23828125, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 270.69921875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 385.73046875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 240.09765625, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 348.296875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 421.1015625, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 352.03125, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 383.0, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 516.79296875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 474.4609375, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 332.98828125, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 302.74609375, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 279.71875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 479.1875, + "entries": 117837.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 127.1171875, + "entries": 117837.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 115.01171875, + "entries": 117837.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 127.046875, + "entries": 117837.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 97.703125, + "entries": 117837.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 109.05859375, + "entries": 117837.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 549.916015625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 549.568359375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 376.0751953125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 466.5673828125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 375.5087890625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 627.8662109375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 991.0546875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 530.775390625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 440.6220703125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 436.783203125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 4.1748046875, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 8.08984375, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 8.265625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 8.265625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 8.1953125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 8.30078125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 8.125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 8.16015625, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 85.3369140625, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 696.208984375, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 447.9541015625, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 696.12890625, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 705.4189453125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 465.4921875, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 740.716796875, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 670.7216796875, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 503.8447265625, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 558.07421875, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 193.9521484375, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 924.9208984375, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 781.9091796875, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 967.3720703125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 892.3212890625, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 1007.5361328125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 738.908203125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 1045.5751953125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 489.453125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 642.041015625, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 660.078125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 369.318359375, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 465.9990234375, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 186.9267578125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 573.5029296875, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 583.7001953125, + "entries": 257305.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 195.3916015625, + "entries": 257305.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 255.7314453125, + "entries": 257305.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 243.234375, + "entries": 257305.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 282.8876953125, + "entries": 257305.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 195.75390625, + "entries": 257305.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 164.591796875, + "entries": 257305.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 161.5537109375, + "entries": 257305.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 165.71484375, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 140.69921875, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 130.44921875, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 153.60546875, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 153.625, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 151.73828125, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 144.8984375, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 231.63671875, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 153.64453125, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 156.75390625, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 158.2734375, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 187.4609375, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 149.58203125, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 142.67578125, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 119.7109375, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 183.34765625, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 166.19921875, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 151.19921875, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 159.296875, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 158.86328125, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 162.3984375, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 151.9375, + "entries": 257305.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 70.0029296875, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 347.15625, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 347.17578125, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 116.015625, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 115.83203125, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 234.07421875, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 331.921875, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 486.65234375, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 328.92578125, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 302.9375, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 340.91796875, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 351.60546875, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 664.49609375, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 588.96875, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 482.5703125, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 663.671875, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 378.22265625, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 383.0234375, + "entries": 158994.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 115.7265625, + "entries": 158994.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 132.625, + "entries": 158994.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 133.44140625, + "entries": 158994.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 148.35546875, + "entries": 158994.99999999997, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 176.78515625, + "entries": 158994.99999999997, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 115.76171875, + "entries": 158994.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 266.33203125, + "entries": 158994.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 121.0390625, + "entries": 158994.99999999997, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 123.12890625, + "entries": 158994.99999999997, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 120.34375, + "entries": 158994.99999999997, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 112.359375, + "entries": 158994.99999999997, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 114.71875, + "entries": 158994.99999999997, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 121.6015625, + "entries": 158994.99999999997, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 102.96484375, + "entries": 158994.99999999997, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 4.15625, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 8.0546875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 8.0546875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 8.16015625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 8.265625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 8.58203125, + "entries": 0.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 8.6171875, + "entries": 0.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 8.265625, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 8.23046875, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 626.697265625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 525.9951171875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 525.9580078125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 525.3271484375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 525.5517578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 525.2685546875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 525.8642578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 996.6513671875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 507.5859375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 507.548828125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 508.49609375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 506.892578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 507.89453125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 507.552734375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 493.9609375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 527.0078125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 499.3642578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 439.763671875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 525.1591796875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 510.31640625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 492.6767578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 907.09765625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 925.07421875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 957.7890625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 925.3154296875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 926.7939453125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 26.779296875, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 2819.1064453125, + "entries": 1653361.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 2770.0869140625, + "entries": 1653361.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 3258.453125, + "entries": 1653361.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 978.1142578125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 811.4560546875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 984.9296875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 961.1796875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 114.99609375, + "entries": 284924, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 176.1611328125, + "entries": 284924, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 134.5712890625, + "entries": 284924, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 4.193359375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 8.30078125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 8.16015625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 8.3359375, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 59.2607421875, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 346.125, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 351.98046875, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 465.71875, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 405.73046875, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 314.5078125, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 311.78515625, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 459.1953125, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 384.0546875, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 251.1484375, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 381.359375, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 364.3359375, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 347.05859375, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 332.1328125, + "entries": 165317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 52.466796875, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 205.38671875, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 245.25, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 274.578125, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 261.8671875, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 217.0625, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 217.6484375, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 200.31640625, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 181.3828125, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 169.4375, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 259.9140625, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 156.41015625, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 345.109375, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 218.58203125, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 198.7578125, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 210.04296875, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 190.015625, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 209.67578125, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 186.84765625, + "entries": 77818.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 92.90625, + "entries": 77818.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 109.5546875, + "entries": 77818.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 113.43359375, + "entries": 77818.00000000001, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 76.44140625, + "entries": 77818.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 85.9140625, + "entries": 77818.00000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 84.61328125, + "entries": 77818.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 111.87109375, + "entries": 77818.00000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 110.09765625, + "entries": 77818.00000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 94.12890625, + "entries": 77818.00000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 522.6103515625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 509.638671875, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 465.3583984375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 141.802734375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 2029.6953125, + "entries": 991221.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 1795.4140625, + "entries": 991221.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 1767.6953125, + "entries": 991221.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 1309.2265625, + "entries": 991221.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 206.7734375, + "entries": 991221.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 1626.21484375, + "entries": 991221.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 398.30859375, + "entries": 991221.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 330.578125, + "entries": 991221.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 282.98046875, + "entries": 991221.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 551.40625, + "entries": 991221.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 6.208984375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 1574.970703125, + "entries": 839189.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 371.0615234375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 318.365234375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 283.259765625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 751.923828125, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 310.4599609375, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 438.634765625, + "entries": 284924, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 186.6591796875, + "entries": 284924, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 182.0693359375, + "entries": 284924, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 89.9912109375, + "entries": 284924, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 672.1337890625, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 650.40234375, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 670.76171875, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 651.6669921875, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 412.4873046875, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 263.8818359375, + "entries": 278065.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 88.74609375, + "entries": 120999.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 367.9013671875, + "entries": 1669126.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 156.6171875, + "entries": 257305.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 99.6484375, + "entries": 158994.99999999997, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 72.453125, + "entries": 77818.00000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 591.8212890625, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 797.9296875, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 646.3642578125, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 482.2158203125, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 793.64453125, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 663.4794921875, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 721.470703125, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 718.681640625, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 827.919921875, + "entries": 278065.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 196.1171875, + "entries": 278065.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.8369140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7255859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.70703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.0419921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.8369140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.5478515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.4111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.9072265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.4111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.8017578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.9853515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.8994140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.8173828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.5224609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3740234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.0185546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8662109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.6005859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4208984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.1904296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.318359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.869140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.123046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.6806640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.603515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.9140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.099609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.1533203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.873046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.4423828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.314453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.287109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.8740234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.107421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.166015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.044921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.033203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.806640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.349609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.1337890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.0439453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.669921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.669921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.669921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.482421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.669921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.837890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.56640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.708984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.134765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.263671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.505859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.669921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9482421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.669921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.669921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.669921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7158203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.8212890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.8876953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.8759765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.8525390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.3916015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.5908203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.0693359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.4638671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.9287109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.841796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.251953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.26171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.052734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.041015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.041015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.5390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.5068359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.9404296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.3720703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.9580078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.064453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.7158203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.2353515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.130859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.615234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.5546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.767578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.068359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.7021484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.685546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.80859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.7978515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.3525390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7255859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.3466796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.6396484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.71484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.46875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.8876953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.1572265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.0791015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.8740234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.6884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.8564453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.1328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.8173828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.1767578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9619140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9736328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.0751953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.2822265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.7939453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.2431640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.1142578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.9814453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.8837890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.6611328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.763671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.337890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.9609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.201171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.2265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.572265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.52734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.923828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.52734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.861328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.5078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.814453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.6162109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.9638671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.7490234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.4287109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.0458984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.5380859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.05078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.6640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.44921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9853515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.2861328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.8828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.5068359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.3447265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.7529296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.4228515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.9169921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.5439453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.7880859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.2978515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.5341796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.771484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.9501953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.1982421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.884765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.8232421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.1455078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.0634765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.6494140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.6826171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.7216796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.7744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.4736328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5166015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.310546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.1416015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.1259765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7919921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.0966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.802734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 14.1357421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 19.0849609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 28.0546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.2568359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 23.43359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 19.0146484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 9.037109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.3095703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.8115234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 14.4384765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.6318359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.2978515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.91796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.9765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.3076171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.3271484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.75390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.978515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.0546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.2265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.041015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.041015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.0966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.2919921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.2216796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.7255859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.9140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 14.2470703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 19.1962890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 28.166015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.3681640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 23.544921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 19.1259765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 9.1484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.4208984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 5.9228515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 14.5498046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.7431640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 5.4091796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.029296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.087890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.4189453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.4384765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.865234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.08984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.337890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.15234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.15234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.2080078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.4033203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.3330078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.7880859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1708984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3935546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.55859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.8955078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.455078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.4423828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9482421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.8828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.9970703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.15234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.619140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.0078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.8828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.736328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.216796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.2978515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.8447265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.69921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.66796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.2919921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.3916015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.271484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5576171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.951171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9912109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9736328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9990234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9306640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.021484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.04296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.982421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3212890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.115234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.083984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.23046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.701171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.041015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.115234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.537109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.041015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.775390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8154296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7666015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.802734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.978515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.7646484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.6904296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.6435546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.732421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.501953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3564453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.9306640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0478515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.4814453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9853515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7275390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7822265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7783203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8916015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1142578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.07421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.55078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.63671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.10546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.1103515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.279296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.4462890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.15234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3193359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.275390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.509765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7255859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.21484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.4755859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1904296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7255859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.3623046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.791015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1474609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8388671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.2138671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.8779296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8017578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.810546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.9580078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.6494140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8408203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.001953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.001953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.833984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0673828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.82421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.00390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.333984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.0078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.0927734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.4287109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9716796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.189453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1982421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.9541015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.447265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3994140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.369140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.8681640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1728515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.849609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2177734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.59375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1416015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.2021484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.115234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.4091796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.505859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.880859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.91015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1357421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1533203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.103515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.029296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.63671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.3505859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.0185546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.044921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.705078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.4638671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.166015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.486328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.486328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.4716796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.052734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.193359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.5654296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3935546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.560546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.451171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.556640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.107421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9853515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9853515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0224609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0224609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.15234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.15234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.79296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9248046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1748046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.0810546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.7802734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.3349609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.5615234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.4638671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7294921875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7333984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7529296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.896484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.021484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.791015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.416015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.876953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.345703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.470703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.830078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.849609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9150390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0400390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.4619140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.3134765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.7431640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.2314453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.95703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.94140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0185546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1357421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5146484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.8857421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.3759765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.716796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0751953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.6015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.84375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8134765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7529296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7841796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8193359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9365234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0029296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1123046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3310546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.9365234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3076171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.3037109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.2568359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.400390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2080078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.4111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.9619140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.5830078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.3759765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.6298828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.017578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.46484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.4375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.189453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.9091796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.791015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.412109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.7236328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.787109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0224609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3564453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0556640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3525390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.3017578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2822265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2080078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.0478515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.8134765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9033203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.958984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.052734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.517578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.7880859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5693359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.71484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.654296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.33203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.212890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3291015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3759765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.4658203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.8291015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3603515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2822265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.75, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.88671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.04296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.11328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5517578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3291015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5712890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.6064453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.0400390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5830078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.3291015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5791015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.08984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8369140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2529296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.271484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.279296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.283203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.01953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.31640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.00390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.3271484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6904296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0908203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.068359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.0009765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.615234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2822265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3681640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.8330078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.3896484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.66796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3935546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.3984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.1201171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8955078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5439453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5322265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6533203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.787109375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9853515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1201171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6513671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4599609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.0458984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.31640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.197265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.322265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.5380859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.26953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.119140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.052734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.123046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.115234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.849609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.115234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.724609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.337890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.01171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.748046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.755859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.763671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.771484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.880859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.990234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1494140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.3955078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.97265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0712890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0751953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1103515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1298828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3369140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5400390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.0078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.97265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.50390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.2373046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.1513671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.6572265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.1796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.0361328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.916015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.08984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1611328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.0263671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.06640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.8857421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.8271484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.2958984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2822265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3486328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.1845703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.6650390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.201171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.189453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.189453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.189453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.228515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.896484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.681640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.8095703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.185546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3564453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.337890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2451171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.517578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.4931640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5107421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1708984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2080078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.2236328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4814453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.560546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.353515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.955078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.29296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0224609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3193359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3564453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6357421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.4189453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5771484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.4814453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5634765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.59765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1337890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.6181640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9853515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.4697265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.4072265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.5009765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5244140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.1484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.7666015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.115234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.896484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.896484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.634765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.673828125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8369140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.966796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0224609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.60546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.00390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9853515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.65625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.5859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6552734375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.904296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8154296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1337890625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.18359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.17578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2080078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2783203125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.6005859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1494140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.119140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.267578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5439453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.126953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.94140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.416015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0595703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.1376953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.166015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9609375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.26953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9521484375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8779296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.1025390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.2431640625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.70703125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.744140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.818359375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8369140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.892578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8740234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8740234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7998046875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8369140625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7626953125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9296875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9482421875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7255859375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9111328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.263671875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3564453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3564453125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.041015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3486328125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0009765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2509765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0634765625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.51171875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.7265625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.3125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.6015625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.560546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.083984375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.841796875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.830078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.9150390625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5830078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.578125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.03515625, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.78125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.85546875, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.15234375, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.078125, + "entries": 284924, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 4.0888671875, + "entries": 284924, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 5.4912109375, + "entries": 284924, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 769.2744140625, + "entries": 284924, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 1847.2802734375, + "entries": 21838.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 1463.41796875, + "entries": 284924, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 1461.5654296875, + "entries": 284924, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 15877.3095703125, + "entries": 1788050.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 1625.0537109375, + "entries": 284924, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 1628.6552734375, + "entries": 284924, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 14069.1103515625, + "entries": 120999.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 16700.7568359375, + "entries": 130563.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 167.7109375, + "entries": 3662.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 10184.2392578125, + "entries": 456026.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 72494.431640625, + "entries": 1669126.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 2845.8427734375, + "entries": 284924, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 8529.0390625, + "entries": 117837.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 5344.7373046875, + "entries": 284924, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 90.5673828125, + "entries": 0.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 21222.884765625, + "entries": 257305.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 8539.0029296875, + "entries": 158994.99999999997, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 70.38671875, + "entries": 0.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8317.2451171875, + "entries": 284924, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 1466.1357421875, + "entries": 284924, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 1528.15234375, + "entries": 284924, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 907.09765625, + "entries": 284924, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 925.07421875, + "entries": 284924, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 957.7890625, + "entries": 284924, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 925.3154296875, + "entries": 284924, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 926.7939453125, + "entries": 284924, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 8874.42578125, + "entries": 1653361.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 978.1142578125, + "entries": 284924, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 811.4560546875, + "entries": 284924, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 984.9296875, + "entries": 284924, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 961.1796875, + "entries": 284924, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 114.99609375, + "entries": 284924, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 176.1611328125, + "entries": 284924, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 134.5712890625, + "entries": 284924, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 4774.3935546875, + "entries": 165317.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 4952.166015625, + "entries": 77818.00000000001, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 1497.607421875, + "entries": 284924, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 10440.095703125, + "entries": 991221.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 1581.1796875, + "entries": 839189.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 2842.43359375, + "entries": 284924, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 9850.9697265625, + "entries": 278065.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 3958.3701171875, + "entries": 284924, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT35_BptxAND", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 587.23828125, + "entries": 284924, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 3.7255859375, + "entries": 284924, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 3.85546875, + "entries": 284924, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 3689.9912109375, + "entries": 284924, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 3.85546875, + "entries": 284924, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 1, + "allsize": 0.072265625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.072265625, + "entries": 1, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.072265625, + "entries": 1, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 420, + "allsize": 1.2236328125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.1669921875, + "entries": 420, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.5029296875, + "entries": 420, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.1884765625, + "entries": 420, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.18359375, + "entries": 420, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.181640625, + "entries": 420, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.1669921875, + "entries": 420, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.5029296875, + "entries": 420, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.1884765625, + "entries": 420, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.18359375, + "entries": 420, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.181640625, + "entries": 420, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30527/MuOnia_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30527/MuOnia_doc.html new file mode 100644 index 000000000..8b4b58775 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30527/MuOnia_doc.html @@ -0,0 +1,1661 @@ + + + + Documentation for 1CA7427A-FF5A-2A48-A760-C4BF89EDCD54.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30527/MuOnia_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30527/MuOnia_doc.json new file mode 100644 index 000000000..1b6b7a06c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30527/MuOnia_doc.json @@ -0,0 +1,14164 @@ +{ + "filename": "1CA7427A-FF5A-2A48-A760-C4BF89EDCD54.root", + "filesize": 1143716.8857421875, + "trees": { + "Events": { + "entries": 1591545, + "allsize": 1138460.0615234375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 32.8388671875, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 40.3193359375, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 4296.5517578125, + "entries": 1591545, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 85.6904296875, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 158.24609375, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 169.13671875, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 161.63671875, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 161.68359375, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 157.5, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 146.78515625, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 141.87109375, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 169.7109375, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 133.31640625, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 176.84765625, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 159.71484375, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 163.73828125, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 159.21875, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 156.98046875, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 168.4296875, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 159.7734375, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 177.5625, + "entries": 19734.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 115.73828125, + "entries": 19734.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 122.5390625, + "entries": 19734.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 107.609375, + "entries": 19734.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 124.23828125, + "entries": 19734.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 119.5078125, + "entries": 19734.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 110.9609375, + "entries": 19734.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 121.31640625, + "entries": 19734.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 120.41796875, + "entries": 19734.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 121.19140625, + "entries": 19734.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 2980.4052734375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 2779.61328125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2522.9228515625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 2991.01171875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 2777.6806640625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2464.990234375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 800.3603515625, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 6503.72265625, + "entries": 7554054.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 17513.0078125, + "entries": 7554054.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 11519.02734375, + "entries": 7554054.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 17552.125, + "entries": 7554054.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 12251.671875, + "entries": 7554054.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 3533.3212890625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 5469.490234375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 3543.0732421875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 5485.25, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 256.3369140625, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 794.40625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 794.02734375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 356.4453125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 355.953125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 924.72265625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 398.47265625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 399.41796875, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 391.9140625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 393.40625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 969.73828125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 713.703125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 981.953125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 717.26953125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1047.35546875, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 943.97265625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 742.71484375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 1004.30859375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 704.62109375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 933.9609375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 771.34765625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 797.83984375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 915.92578125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1225.19921875, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1107.9609375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 1068.3515625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 1105.79296875, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1234.55859375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1168.625, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 1003.578125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 1250.859375, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 811.80078125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 812.0, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 836.78125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 915.4296875, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 790.61328125, + "entries": 258671.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 416.51171875, + "entries": 258671.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 395.13671875, + "entries": 258671.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 484.8984375, + "entries": 258671.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 416.7578125, + "entries": 258671.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 419.81640625, + "entries": 258671.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 420.6015625, + "entries": 258671.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 802.56640625, + "entries": 258671.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 723.01171875, + "entries": 258671.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 352.86328125, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 342.08203125, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 390.8125, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 463.578125, + "entries": 258671.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 390.5625, + "entries": 258671.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 352.3828125, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 359.03125, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 364.58203125, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 358.7109375, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 366.9375, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 371.46875, + "entries": 258671.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 340.92578125, + "entries": 258671.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 123.0888671875, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 213.12109375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 286.53515625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 297.72265625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 289.1875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 294.19140625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 291.1015625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 297.0078125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 270.625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 275.7421875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 273.4765625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 269.3125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 275.91796875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 272.70703125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 274.97265625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 268.3359375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 275.1796875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 270.54296875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 291.30078125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 282.89453125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 297.0078125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 298.58203125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 295.97265625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 295.24609375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 315.34375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 277.5859375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 262.77734375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 244.39453125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 191.32421875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 285.6171875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 297.16015625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 296.265625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 297.18359375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 301.41015625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 299.4453125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 298.6953125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 284.51953125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 300.9609375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 297.5234375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 296.62890625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 284.2890625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 316.0546875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 265.39453125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 227.85546875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 280.28515625, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 280.32421875, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 278.9375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 277.98828125, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 256.87109375, + "entries": 61466.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 140.87890625, + "entries": 61466.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 168.22265625, + "entries": 61466.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 168.76953125, + "entries": 61466.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 159.2578125, + "entries": 61466.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 169.0, + "entries": 61466.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 192.2578125, + "entries": 61466.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 78.6953125, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 166.89453125, + "entries": 16068.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 152.765625, + "entries": 16068.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 152.79296875, + "entries": 16068.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 144.9765625, + "entries": 16068.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 162.24609375, + "entries": 16068.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 104.2421875, + "entries": 16068.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 441.9072265625, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3225.66796875, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3179.34375, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 3406.78125, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 2580.03515625, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2189.90234375, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 3421.5390625, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 2823.25390625, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2321.73828125, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1588.421875, + "entries": 1158269.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 954.5703125, + "entries": 1158269.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 956.1953125, + "entries": 1158269.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 990.625, + "entries": 1158269.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 806.6328125, + "entries": 1158269.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 647.3359375, + "entries": 1158269.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 752.33203125, + "entries": 1158269.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 759.798828125, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 4913.3828125, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 9138.59765625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 8816.71875, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 8447.9765625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 8458.8125, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 11624.76171875, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 10030.2109375, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 10805.796875, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 9932.54296875, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 2016.20703125, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 7328.765625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 7273.10546875, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 13915.2890625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 2434.875, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 2434.0625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 10491.328125, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 4104.640625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 9189.5234375, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 8222.8984375, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 7569.94140625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 13728.1015625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 10289.84375, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 10664.0, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 8018.125, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 8803.1171875, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 9261.19140625, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 7210.08984375, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 9068.1796875, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 7160.42578125, + "entries": 5768724.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 1778.0703125, + "entries": 5768724.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1421.87109375, + "entries": 5768724.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1456.2265625, + "entries": 5768724.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 1635.921875, + "entries": 5768724.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1868.08203125, + "entries": 5768724.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2466.62109375, + "entries": 5768724.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2007.8515625, + "entries": 5768724.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 1764.5234375, + "entries": 5768724.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2418.28515625, + "entries": 5768724.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 2657.3984375, + "entries": 5768724.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 4353.0859375, + "entries": 5768724.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1606.205078125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 537.8955078125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 542.4765625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 545.7236328125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 3105.234375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 1355.9228515625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 3403.3330078125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 3047.9267578125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 3154.3095703125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 3276.2392578125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 3538.822265625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 329.859375, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 2311.4296875, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 580.4140625, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1612.7109375, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1622.58203125, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1161.62109375, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1659.37890625, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1158.9296875, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1576.27734375, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 2193.515625, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1238.4921875, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 1741.14453125, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 996.62890625, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 1559.19140625, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1842.59375, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1498.37109375, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 1727.74609375, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 2237.41796875, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 2099.609375, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 1476.421875, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1380.140625, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1212.5234375, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 2102.2265625, + "entries": 502818.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 618.359375, + "entries": 502818.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 540.6328125, + "entries": 502818.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 618.19921875, + "entries": 502818.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 522.94140625, + "entries": 502818.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 568.66015625, + "entries": 502818.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 3088.248046875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 3089.439453125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2013.9072265625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 2482.3173828125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2013.7158203125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 3579.6240234375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 5496.4140625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 2943.451171875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2483.3564453125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2477.521484375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 234.1201171875, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1359.2080078125, + "entries": 413954.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1445.15234375, + "entries": 413954.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1446.3671875, + "entries": 413954.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 427.8818359375, + "entries": 413954.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 429.6015625, + "entries": 413954.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1270.61328125, + "entries": 413954.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 508.90625, + "entries": 413954.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 375.4736328125, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7992.125, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 4667.296875, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 7955.50390625, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 8151.234375, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 4889.72265625, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 8704.2578125, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 7676.80078125, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 5554.23046875, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 6236.53515625, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1515.921875, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 10019.453125, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 7868.46875, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 11131.24609375, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 9834.41015625, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 11931.41015625, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 8638.65234375, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 12593.734375, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 5096.453125, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 7025.28125, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 7605.52734375, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 3976.9140625, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 4945.67578125, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1607.01953125, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 7737.41015625, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 7502.27734375, + "entries": 3345532.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1739.06640625, + "entries": 3345532.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2293.0390625, + "entries": 3345532.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 2261.01953125, + "entries": 3345532.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 2686.16796875, + "entries": 3345532.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1745.70703125, + "entries": 3345532.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1297.03125, + "entries": 3345532.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1274.6171875, + "entries": 3345532.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1404.22265625, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1090.15234375, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 992.1953125, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1161.08203125, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1162.35546875, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1138.5703125, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1117.65625, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2224.875, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1163.7421875, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1248.0625, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1407.171875, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 1951.203125, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1340.83203125, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 1490.296875, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 935.21875, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 1973.546875, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1653.77734375, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1183.5078125, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1396.18359375, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1369.77734375, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1517.99609375, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1175.24609375, + "entries": 3345532.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 251.0849609375, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 725.96875, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 727.421875, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 337.39453125, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 336.67578125, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 568.22265625, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 712.84375, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 960.62890625, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 699.7578125, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 660.5703125, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 759.1328125, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 779.4296875, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1206.78125, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 1115.08984375, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 956.50390625, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 1162.13671875, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 775.6171875, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 795.6875, + "entries": 246773.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 335.7421875, + "entries": 246773.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 361.140625, + "entries": 246773.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 368.10546875, + "entries": 246773.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 395.59765625, + "entries": 246773.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 443.6796875, + "entries": 246773.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 335.68359375, + "entries": 246773.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 620.8828125, + "entries": 246773.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 360.84765625, + "entries": 246773.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 368.76953125, + "entries": 246773.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 363.6171875, + "entries": 246773.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 343.01171875, + "entries": 246773.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 349.43359375, + "entries": 246773.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 363.59375, + "entries": 246773.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 322.18359375, + "entries": 246773.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 328.5703125, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2735.513671875, + "entries": 1019627.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 3044.076171875, + "entries": 1019627.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 612.97265625, + "entries": 1019627.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 613.912109375, + "entries": 1019627.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 785.6875, + "entries": 1019627.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 790.095703125, + "entries": 1019627.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 848.291015625, + "entries": 1019627.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 613.83984375, + "entries": 1019627.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 3568.009765625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 2969.7685546875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 2969.4658203125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 2969.7685546875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 2969.8681640625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 2968.7412109375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 2974.1337890625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 5508.4482421875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 2805.984375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 2805.681640625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 2804.4375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 2807.626953125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 2802.98828125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 2804.673828125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2723.90234375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 2983.1796875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 2778.0595703125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2481.052734375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 2967.2763671875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 2799.453125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2706.3759765625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 5096.0546875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 5144.125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 5159.328125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 5392.8779296875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 5224.3642578125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 176.482421875, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 15592.98828125, + "entries": 9383546.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 15335.51953125, + "entries": 9383546.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 17343.765625, + "entries": 9383546.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 5439.7587890625, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 4680.4482421875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 5489.3125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 5515.34375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 574.63671875, + "entries": 1591545, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1009.7587890625, + "entries": 1591545, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 705.7548828125, + "entries": 1591545, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 328.873046875, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 2718.41015625, + "entries": 1019627.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2627.3203125, + "entries": 1019627.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 848.287109375, + "entries": 1019627.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 101.1708984375, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 297.9375, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 302.6953125, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 332.94921875, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 314.58203125, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 271.51171875, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 273.52734375, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 332.50390625, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 301.625, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 229.8984375, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 308.25, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 302.54296875, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 295.65234375, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 289.80859375, + "entries": 79545.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 275.814453125, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 984.06640625, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1153.16015625, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1241.6328125, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1210.6484375, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1015.8671875, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1018.23046875, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 930.71875, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 829.74609375, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 725.82421875, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1206.01953125, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 739.46484375, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1464.33203125, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1029.359375, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 973.96484375, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 998.02734375, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1062.6640625, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 997.84765625, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 905.1015625, + "entries": 325577.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 484.84765625, + "entries": 325577.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 554.515625, + "entries": 325577.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 528.75390625, + "entries": 325577.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 412.703125, + "entries": 325577.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 454.35546875, + "entries": 325577.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 452.24609375, + "entries": 325577.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 570.28515625, + "entries": 325577.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 560.234375, + "entries": 325577.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 500.30078125, + "entries": 325577.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 2962.2548828125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 2806.783203125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 2562.2294921875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 317.654296875, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 1985.33984375, + "entries": 759370.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 1885.2109375, + "entries": 759370.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 1869.53515625, + "entries": 759370.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 1259.609375, + "entries": 759370.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 381.875, + "entries": 759370.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 1556.19140625, + "entries": 759370.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 557.19140625, + "entries": 759370.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 512.66015625, + "entries": 759370.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 546.28515625, + "entries": 759370.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 730.8671875, + "entries": 759370.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 35.755859375, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 8699.5078125, + "entries": 4773931.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2153.5029296875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1898.294921875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1670.783203125, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 4301.685546875, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1791.6240234375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2361.443359375, + "entries": 1591545, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 972.8583984375, + "entries": 1591545, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 953.8154296875, + "entries": 1591545, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 452.2607421875, + "entries": 1591545, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 2831.5625, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 2764.53125, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 2819.1484375, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 2768.9453125, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 1831.69921875, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1202.5, + "entries": 1109279.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 340.90625, + "entries": 258671.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1844.96484375, + "entries": 5768724.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1240.33984375, + "entries": 3345532.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 321.9765625, + "entries": 246773.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 396.3203125, + "entries": 325577.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 2528.88671875, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 3371.28515625, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 2741.05078125, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2057.0, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 3354.4921875, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 2793.46484375, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 3045.0859375, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 3033.14453125, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 3465.09375, + "entries": 1109279.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 965.21484375, + "entries": 1109279.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.4580078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.0634765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.123046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.306640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.306640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.7607421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.306640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.8525390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.1552734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.00390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.3349609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.0791015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.3642578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.2392578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.8486328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2626953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.1806640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.5439453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.5947265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.3173828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.5029296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.9560546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.2646484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.1474609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.1787109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.5654296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.7841796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.021484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.802734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.673828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.1435546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.5029296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.7255859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.0048828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.0771484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.587890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.3515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.94140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 265.603515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.9228515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 220.048828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.8564453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.849609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.5615234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 220.537109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.4921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.4091796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 267.193359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 261.923828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.818359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.642578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.978515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.681640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.826171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.7861328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.5244140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.701171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.244140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.021484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.220703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.552734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.427734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.548828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.388671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.693359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.490234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.701171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.9716796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.521484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.8525390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.8525390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.8525390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.8525390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.8525390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.701171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.7607421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.701171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.701171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.7607421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.9072265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.9306640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.9384765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.5087890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.6533203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.9267578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.9697265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.7705078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.4462890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1513671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.0341796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.0888671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.615234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.791015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.021484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.728515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.728515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.7109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.2109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.3974609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.5888671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.615234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.0927734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 189.0439453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.8056640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.458984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.1259765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.5947265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.353515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.552734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.6171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.841796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.037109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.6787109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.373046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.80078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.4580078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.8408203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.4580078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.4462890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.1083984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.5029296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.6630859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.3515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.9267578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.9736328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.3330078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.7158203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.306640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.9716796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.1923828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.4580078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.8916015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.63671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6259765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.0400390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6376953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6884765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.6845703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.8251953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.8251953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.9345703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.9658203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.5283203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.4033203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.6962890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.9970703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.392578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.041015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.70703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.166015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.4453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.892578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.78125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.701171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.07421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.298828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.94140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.408203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.26953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.892578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.88671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.439453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.1796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.712890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.53125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.025390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.6083984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.8203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.1630859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.4716796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.65625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.0732421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.2412109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.4365234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.65234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.1826171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.91015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.3359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.2744140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.2744140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.68359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.4580078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.4580078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.9052734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.7275390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 208.6787109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.3447265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 216.3505859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.8759765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.3740234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.9423828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 216.1396484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 208.7197265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.7412109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.384765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 181.0751953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.1708984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.697265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.791015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.21484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.3818359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.2744140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.7353515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.4541015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.490234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.3349609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.3857421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.0556640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.7705078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.8681640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 229.701171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.2001953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.2822265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.8427734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.1865234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 30.759765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.5263671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.3037109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 97.58203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.1669921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.5390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.8271484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.126953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.9150390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.4052734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.5556640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 30.9716796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 30.2236328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 30.21484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.123046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 30.375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.3935546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.1513671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.35546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 30.599609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 30.953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.53515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.2421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.728515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 31.728515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.1826171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 32.9482421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.3974609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 29.1552734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 31.67578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.4345703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.2119140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 98.490234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.0751953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.447265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.7353515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.03515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.8232421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.3134765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.4638671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 31.8876953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 31.1318359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 31.123046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 31.283203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.3017578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.0595703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.263671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 31.5078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.150390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.63671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 32.63671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.0908203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 33.8564453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.3134765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.21484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.18359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6318359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9521484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5146484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.04296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.0322265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 217.251953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.3525390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1025390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9755859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.55078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1962890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.63671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.845703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.69921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.59765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.212890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5556640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0244140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.9375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.2568359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.1572265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.408203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7685546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.212890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.6201171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7939453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7763671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0439453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.052734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.3515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.814453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.2197265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.333984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.255859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.39453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.25390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.345703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.322265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.740234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6884765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.1865234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.759765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.283203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0595703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.201171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.205078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6845703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4404296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.1962890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.044921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.349609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6318359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6826171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6748046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.193359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.158203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0908203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3017578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7626953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.1259765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.072265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0439453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.5869140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.123046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.2744140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.9150390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.9384765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.0244140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1494140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.62890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4814453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.423828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4501953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.32421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8154296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.740234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.169921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.2021484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.06640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.3310546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2490234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7255859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.0849609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.904296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1240234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.6708984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.46875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.0576171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2607421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9228515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9189453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9736328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.025390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.6884765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.4541015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.0634765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.279296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.80859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.21484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.3759765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.76953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.50390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.42578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.63671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.63671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.419921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.2421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6044921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1748046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.4130859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.98046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.90625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.544921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5380859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.3876953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.654296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1337890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.994140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.19921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.7392578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8251953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.400390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.8974609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.08984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.8330078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 151.921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.37109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.3740234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.521484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.5693359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.154296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.037109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.26953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.6513671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9306640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.009765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.26953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0693359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.947265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.05859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.8349609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9873046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.486328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.021484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2255859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.900390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.361328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.361328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6162109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.162109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.548828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6748046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1708984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.806640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.943359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.052734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.326171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.2744140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.2744140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5771484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5771484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.63671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.63671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.62890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.62109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.8037109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9326171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.4599609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8427734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.3544921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1279296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5888671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1982421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1826171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1943359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.396484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.431640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.869140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.138671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.603515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.560546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.955078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.931640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.1298828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2275390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5009765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.2080078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4189453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0283203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.83203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0107421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9873046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.3466796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0341796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1728515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.576171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9345703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.50390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.2470703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2099609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2138671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2333984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3193359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3466796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.5576171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6943359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3427734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6279296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0458984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.5498046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.240234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3564453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5087890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3486328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.4228515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5986328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5595703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.123046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.43359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.541015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0107421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.650390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.767578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0126953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.138671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5771484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3017578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7861328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.2470703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.64453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.8603515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5986328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.9580078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.6728515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.4072265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.0830078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.572265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.267578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.916015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.7919921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2998046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.03515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.38671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.361328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3173828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3173828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.2001953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7744140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.95703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3017578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6962890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.7578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.90234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.91796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3095703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6962890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3134765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7275390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3330078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7353515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3681640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7392578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.50390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.8828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5361328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.12890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.4013671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.544921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.568359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.556640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.04296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5498046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.2841796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.923828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7900390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.982421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7705078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1220703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.57421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1630859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.4765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.29296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6337890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1181640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.8603515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2626953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.033203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.2861328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.2138671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.53125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.1826171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4443359375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.4482421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3896484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.59375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.623046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.849609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4208984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.25390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.333984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.736328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.333984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.333984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.962890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.333984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.458984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.876953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.72265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.12109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.322265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.314453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.310546875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.322265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.341796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.353515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.5009765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3525390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8837890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8876953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.9072265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8994140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.9150390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.12109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.12890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.84375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8662109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9013671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7236328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.79296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.0830078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 193.779296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.1533203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3740234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2607421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.29296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8154296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3427734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3740234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6962890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9072265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.8603515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7626953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6513671875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.970703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.939453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.939453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.939453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.947265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.025390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.998046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1728515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.455078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3408203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.1826171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.150390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5107421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.623046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7548828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.46484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6162109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7880859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.0908203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2470703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4775390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.966796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.052734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.298828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.9921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5771484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9990234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3017578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3271484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7529296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.4658203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5498046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.8837890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6923828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.33984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.4853515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5634765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.2744140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8017578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0087890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.7080078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0439453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.94921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.1416015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.333984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.083984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.123046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.216796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.556640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.681640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.9267578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.123046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.3583984375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 246.1796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 196.54296875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.30078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.2001953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.44140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.9794921875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.595703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9677734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.5048828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.6484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.65625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.64453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7587890625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0947265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5732421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6806640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.740234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.416015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.6806640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.005859375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.01171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.900390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8798828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.8291015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.349609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.01171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.03515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5927734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9873046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5869140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5166015625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.00390625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.306640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.912109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.0634765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7607421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.517578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3662109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3662109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7607421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7607421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.21484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.0634765625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.4580078125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8203125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9716796875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1552734375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.609375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6689453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.548828125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3017578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3017578125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.728515625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.4814453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.4619140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.0595703125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.0244140625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.37109375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.01171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.01171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.376953125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.326171875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.314453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.314453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.9697265625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.9306640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.23046875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.07421875, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.65234375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.21484375, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.640625, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.03125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.328125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.064453125, + "entries": 1591545, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 32.8388671875, + "entries": 1591545, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 40.3193359375, + "entries": 1591545, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 4296.5517578125, + "entries": 1591545, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 3871.3623046875, + "entries": 19734.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8282.94140625, + "entries": 1591545, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 8233.6826171875, + "entries": 1591545, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 66139.9150390625, + "entries": 7554054.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 9002.8115234375, + "entries": 1591545, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 9028.3232421875, + "entries": 1591545, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 38515.5087890625, + "entries": 258671.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 14592.9951171875, + "entries": 61466.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 962.61328125, + "entries": 16068.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 30286.2822265625, + "entries": 1158269.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 267785.212890625, + "entries": 5768724.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 24114.0888671875, + "entries": 1591545, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 38188.01953125, + "entries": 502818.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 29667.9951171875, + "entries": 1591545, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 13644.7412109375, + "entries": 413954.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 225867.6962890625, + "entries": 3345532.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 19185.2138671875, + "entries": 246773.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 10372.958984375, + "entries": 1019627.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 46453.4990234375, + "entries": 1591545, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8242.2919921875, + "entries": 1591545, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8473.10546875, + "entries": 1591545, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 5096.0546875, + "entries": 1591545, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 5144.125, + "entries": 1591545, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 5159.328125, + "entries": 1591545, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 5392.8779296875, + "entries": 1591545, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 5224.3642578125, + "entries": 1591545, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 48448.755859375, + "entries": 9383546.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 5439.7587890625, + "entries": 1591545, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 4680.4482421875, + "entries": 1591545, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 5489.3125, + "entries": 1591545, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 5515.34375, + "entries": 1591545, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 574.63671875, + "entries": 1591545, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1009.7587890625, + "entries": 1591545, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 705.7548828125, + "entries": 1591545, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 3954.6552734375, + "entries": 79545.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 23677.052734375, + "entries": 325577.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 8331.267578125, + "entries": 1591545, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 11602.419921875, + "entries": 759370.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 8735.263671875, + "entries": 4773931.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 16104.0078125, + "entries": 1591545, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 42025.3662109375, + "entries": 1109279.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 17949.0654296875, + "entries": 1591545, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT35_BptxAND", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2079.8125, + "entries": 1591545, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 29.1552734375, + "entries": 1591545, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 30.21484375, + "entries": 1591545, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 20750.0771484375, + "entries": 1591545, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 30.21484375, + "entries": 1591545, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 19, + "allsize": 0.142578125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.142578125, + "entries": 19, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.142578125, + "entries": 19, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1949, + "allsize": 2.3173828125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2333984375, + "entries": 1949, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.4013671875, + "entries": 1949, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2275390625, + "entries": 1949, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.22265625, + "entries": 1949, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.232421875, + "entries": 1949, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2333984375, + "entries": 1949, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.4013671875, + "entries": 1949, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2275390625, + "entries": 1949, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.22265625, + "entries": 1949, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.232421875, + "entries": 1949, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30528/MuonEG_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30528/MuonEG_doc.html new file mode 100644 index 000000000..0ca963fcd --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30528/MuonEG_doc.html @@ -0,0 +1,1684 @@ + + + + Documentation for 2ADBED61-A06A-D64B-BE90-E9B267D15700.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrain_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrain_BRILBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_refBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30528/MuonEG_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30528/MuonEG_doc.json new file mode 100644 index 000000000..976e23923 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30528/MuonEG_doc.json @@ -0,0 +1,14394 @@ +{ + "filename": "2ADBED61-A06A-D64B-BE90-E9B267D15700.root", + "filesize": 2290099.1962890625, + "trees": { + "Events": { + "entries": 2238235, + "allsize": 2284468.5478515625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 62.771484375, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 73.814453125, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 6056.720703125, + "entries": 2238235, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 280.505859375, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 715.298828125, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 821.3671875, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 726.708984375, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 728.009765625, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 704.1796875, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 660.025390625, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 623.705078125, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 824.4296875, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 553.962890625, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 913.041015625, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 730.138671875, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 741.525390625, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 728.423828125, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 708.537109375, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 776.65625, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 736.0078125, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 917.3671875, + "entries": 165112.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 421.212890625, + "entries": 165112.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 465.28515625, + "entries": 165112.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 372.181640625, + "entries": 165112.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 489.63671875, + "entries": 165112.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 453.08984375, + "entries": 165112.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 404.103515625, + "entries": 165112.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 462.357421875, + "entries": 165112.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 458.814453125, + "entries": 165112.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 458.037109375, + "entries": 165112.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4240.923828125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3953.125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3534.591796875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4253.28125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3960.138671875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3437.51953125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1183.267578125, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 9992.3359375, + "entries": 11556172.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 26517.015625, + "entries": 11556172.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 17237.12109375, + "entries": 11556172.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 26659.37109375, + "entries": 11556172.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 18578.6875, + "entries": 11556172.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 5052.529296875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 7775.91015625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 5125.720703125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 7783.08984375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 671.966796875, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 4509.3359375, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 4501.0234375, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1347.30078125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1347.48046875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 5277.494140625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2469.89453125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2419.638671875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2249.00390625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 2253.26953125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 5566.6875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 3811.017578125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5633.978515625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 3883.05859375, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 6234.21875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 5371.328125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 3969.69140625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 5855.41015625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 3962.96875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 5339.240234375, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 4335.173828125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 4466.140625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 5298.248046875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 7707.931640625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 6808.306640625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 6876.849609375, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 7127.056640625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 7892.447265625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 7352.857421875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 5886.91796875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 8131.716796875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 4493.283203125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 4565.564453125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 4692.5390625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 5181.3671875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 4682.529296875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1696.103515625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1764.798828125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2145.861328125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1699.8984375, + "entries": 1954719.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1895.5546875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1822.3203125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 4450.3125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 3877.74609375, + "entries": 1954719.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 1294.029296875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 1228.90625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1492.158203125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2001.427734375, + "entries": 1954719.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1578.228515625, + "entries": 1954719.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 1294.48828125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 1335.2109375, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 1420.197265625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 1341.50390625, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 1374.48046875, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1454.111328125, + "entries": 1954719.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1176.474609375, + "entries": 1954719.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 388.642578125, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 900.279296875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1367.078125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 1462.66015625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 1377.4921875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 1426.78125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1407.421875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 1420.91015625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 1253.423828125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 1312.865234375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1294.162109375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1237.013671875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 1312.18359375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 1269.81640625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 1300.556640625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1232.087890625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 1308.8046875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 1254.734375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 1415.98828125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1342.171875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 1432.125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1464.314453125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1442.814453125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1436.083984375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 1600.41015625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 1332.126953125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 1241.02734375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1115.466796875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 770.248046875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 1343.078125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 1454.24609375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 1432.74609375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 1446.37890625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 1481.708984375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 1460.943359375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 1452.587890625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1345.98828125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 1477.689453125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 1445.193359375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 1439.365234375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 1354.880859375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 1598.03515625, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 1240.220703125, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1002.73046875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1350.240234375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1350.583984375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1347.482421875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1345.412109375, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1244.044921875, + "entries": 421980.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 544.6171875, + "entries": 421980.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 674.396484375, + "entries": 421980.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 674.607421875, + "entries": 421980.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 658.580078125, + "entries": 421980.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 658.373046875, + "entries": 421980.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 836.015625, + "entries": 421980.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 242.0078125, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 744.208984375, + "entries": 112626.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 632.998046875, + "entries": 112626.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 633.130859375, + "entries": 112626.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 578.2734375, + "entries": 112626.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 721.15234375, + "entries": 112626.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 325.560546875, + "entries": 112626.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 812.501953125, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7040.65234375, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 6953.384765625, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 7428.58984375, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 5617.7353515625, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4660.607421875, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 7468.1953125, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6116.490234375, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5121.365234375, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3318.525390625, + "entries": 2689800.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1836.7705078125, + "entries": 2689800.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1874.1767578125, + "entries": 2689800.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1916.6748046875, + "entries": 2689800.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1578.96875, + "entries": 2689800.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1197.025390625, + "entries": 2689800.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1453.94140625, + "entries": 2689800.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1142.39453125, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 9585.453125, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 19284.767578125, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 18274.845703125, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 17376.498046875, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 17438.697265625, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 24081.044921875, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 20619.326171875, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 22423.529296875, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 20746.65625, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 4900.84375, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 15481.53125, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 15109.537109375, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 28681.654296875, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4519.212890625, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4521.103515625, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 21926.7890625, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 6512.12109375, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 18733.794921875, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 16804.39453125, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 15652.759765625, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 28285.736328125, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 21794.8515625, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 21713.09375, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 17632.560546875, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 17977.556640625, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 18432.2109375, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 14703.330078125, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 18330.28125, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 14764.412109375, + "entries": 12399096.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3794.38671875, + "entries": 12399096.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2373.453125, + "entries": 12399096.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2261.857421875, + "entries": 12399096.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2808.103515625, + "entries": 12399096.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3141.712890625, + "entries": 12399096.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 3893.94921875, + "entries": 12399096.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2615.453125, + "entries": 12399096.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3644.25, + "entries": 12399096.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 3784.86328125, + "entries": 12399096.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 5177.40625, + "entries": 12399096.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 9105.935546875, + "entries": 12399096.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 4016.47265625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1899.013671875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1924.3984375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1939.041015625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 4708.703125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 2958.779296875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 4820.888671875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 4644.388671875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 4766.673828125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 5342.623046875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 5481.8515625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 631.80859375, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 6191.87109375, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1553.904296875, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 4180.36328125, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4181.048828125, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2985.19140625, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4300.609375, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2937.482421875, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 4130.681640625, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 5942.71484375, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 3149.427734375, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 4518.345703125, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2754.134765625, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 4120.5625, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5250.90625, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4426.11328125, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 4491.013671875, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 6150.5078125, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 5496.0078125, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 3938.48828125, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 3546.36328125, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 3305.818359375, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 5763.2890625, + "entries": 1421723.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1393.22265625, + "entries": 1421723.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1285.12890625, + "entries": 1421723.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1392.501953125, + "entries": 1421723.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1140.109375, + "entries": 1421723.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1320.5703125, + "entries": 1421723.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4399.30078125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4398.8515625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2885.037109375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3659.755859375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2884.115234375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 5108.087890625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 7765.74609375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 4208.50390625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3490.572265625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3471.6875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 315.572265625, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1728.94921875, + "entries": 510899.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1841.361328125, + "entries": 510899.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1841.013671875, + "entries": 510899.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 575.826171875, + "entries": 510899.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 576.83203125, + "entries": 510899.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1626.482421875, + "entries": 510899.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 679.73828125, + "entries": 510899.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 556.880859375, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7833.34765625, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 4868.775390625, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 7792.86328125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7924.404296875, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 5060.17578125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 8326.06640625, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 7542.638671875, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 5774.564453125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 6168.96484375, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1976.189453125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 10949.427734375, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 9236.900390625, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 11275.111328125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 10405.380859375, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 11591.845703125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 8288.08203125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 11610.939453125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 5336.17578125, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 7019.625, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 7424.921875, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 4222.28515625, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 5176.435546875, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1982.279296875, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 6830.259765625, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 6736.443359375, + "entries": 2948895.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 2075.107421875, + "entries": 2948895.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2799.849609375, + "entries": 2948895.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 2636.80078125, + "entries": 2948895.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 3057.283203125, + "entries": 2948895.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 2079.84765625, + "entries": 2948895.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1680.86328125, + "entries": 2948895.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1776.439453125, + "entries": 2948895.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1757.236328125, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1504.076171875, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1350.669921875, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1565.560546875, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1580.361328125, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1548.044921875, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1542.0703125, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2570.298828125, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1581.515625, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1642.076171875, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1711.498046875, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 2173.32421875, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1566.244140625, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 1655.5, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 1235.904296875, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 2096.98046875, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1867.236328125, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1607.314453125, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1703.7421875, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1692.62109375, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1802.84765625, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1608.240234375, + "entries": 2948895.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 593.544921875, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 5927.98828125, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 5928.1640625, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1579.65625, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1576.140625, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 3861.27734375, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 5465.82421875, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 8361.85546875, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 5590.91015625, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 4565.693359375, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 6278.6328125, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 6428.306640625, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 11652.294921875, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 10668.689453125, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 8429.296875, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 11738.611328125, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 6236.173828125, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 6525.890625, + "entries": 2983842.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1577.470703125, + "entries": 2983842.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 2121.255859375, + "entries": 2983842.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 2138.48046875, + "entries": 2983842.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 2239.01171875, + "entries": 2983842.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2607.115234375, + "entries": 2983842.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1577.53515625, + "entries": 2983842.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 4245.421875, + "entries": 2983842.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1696.236328125, + "entries": 2983842.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1722.90234375, + "entries": 2983842.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1722.46875, + "entries": 2983842.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1551.310546875, + "entries": 2983842.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1596.548828125, + "entries": 2983842.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1722.515625, + "entries": 2983842.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1280.330078125, + "entries": 2983842.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 441.52734375, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 3492.7158203125, + "entries": 1273728.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 3884.7431640625, + "entries": 1273728.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 829.28515625, + "entries": 1273728.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 831.0732421875, + "entries": 1273728.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1057.15234375, + "entries": 1273728.9999999998, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1064.6455078125, + "entries": 1273728.9999999998, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 1139.2568359375, + "entries": 1273728.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 830.763671875, + "entries": 1273728.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 5090.80078125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4223.548828125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4222.958984375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4223.169921875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4223.361328125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4221.966796875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4228.263671875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 7788.830078125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3982.66015625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3982.0703125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3983.5859375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3980.0, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3981.1953125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3983.14453125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3883.55078125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4242.51953125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3962.486328125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3483.9609375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4220.205078125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3993.8125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3877.474609375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 6963.8984375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 7068.3515625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 7405.67578125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 7448.056640625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 7151.197265625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 272.609375, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 21949.2392578125, + "entries": 13172356.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 21661.9697265625, + "entries": 13172356.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 25021.97265625, + "entries": 13172356.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 7764.873046875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 7540.716796875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 7797.9609375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 7813.07421875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 938.96875, + "entries": 2238235, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1464.298828125, + "entries": 2238235, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1096.716796875, + "entries": 2238235, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 442.1171875, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 3509.8671875, + "entries": 1273728.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 3365.2265625, + "entries": 1273728.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 1139.9033203125, + "entries": 1273728.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 328.685546875, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1363.75390625, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1390.5078125, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 1683.8515625, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 1523.880859375, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1236.580078125, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1248.388671875, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 1672.21875, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 1453.525390625, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1010.50390625, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1467.521484375, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1419.029296875, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1370.474609375, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1331.376953125, + "entries": 514100.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 570.69921875, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 3171.5390625, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 3822.208984375, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 4286.53125, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 4036.318359375, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 3344.73828125, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 3351.1796875, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 3176.236328125, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 2839.8046875, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 2361.4453125, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 4034.158203125, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 2362.69921875, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 5331.66796875, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 3389.91796875, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 3294.958984375, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 3349.349609375, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 3233.8515625, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 3239.2890625, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 2883.7421875, + "entries": 1260131.9999999998, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 1337.3515625, + "entries": 1260131.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1585.244140625, + "entries": 1260131.9999999998, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1598.2890625, + "entries": 1260131.9999999998, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 1046.751953125, + "entries": 1260131.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 1241.97265625, + "entries": 1260131.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 1175.439453125, + "entries": 1260131.9999999998, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1680.015625, + "entries": 1260131.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1628.89453125, + "entries": 1260131.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 1424.513671875, + "entries": 1260131.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 4212.134765625, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 4003.953125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3630.908203125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1037.91796875, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 16144.9140625, + "entries": 7194574.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 14986.712890625, + "entries": 7194574.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 14989.341796875, + "entries": 7194574.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 10150.95703125, + "entries": 7194574.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1989.95703125, + "entries": 7194574.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 10139.85546875, + "entries": 7194574.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 3472.04296875, + "entries": 7194574.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 3426.193359375, + "entries": 7194574.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 2767.83984375, + "entries": 7194574.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 5428.64453125, + "entries": 7194574.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 64.390625, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 12431.509765625, + "entries": 6713855.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 3080.787109375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2698.45703125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2376.24609375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 6089.55859375, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2551.982421875, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3442.28125, + "entries": 2238235, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1462.900390625, + "entries": 2238235, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1435.900390625, + "entries": 2238235, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 777.861328125, + "entries": 2238235, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 5520.130859375, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 5376.98828125, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 5499.73828125, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 5385.681640625, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 3431.435546875, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 2220.974609375, + "entries": 2237511.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1166.3671875, + "entries": 1954719.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3336.693359375, + "entries": 12399096.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1636.56640625, + "entries": 2948895.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1246.5625, + "entries": 2983842.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 993.162109375, + "entries": 1260131.9999999998, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 4880.912109375, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 6562.2890625, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 5306.587890625, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 3977.712890625, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 6530.2734375, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 5446.478515625, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 5934.41796875, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 5913.03515625, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 6777.3515625, + "entries": 2237511.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1748.08984375, + "entries": 2237511.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.279296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_AND": { + "name": "L1_BPTX_LUT1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B1": { + "name": "L1_BPTX_LUT1_B1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B2": { + "name": "L1_BPTX_LUT1_B2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_OR": { + "name": "L1_BPTX_LUT1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_AND": { + "name": "L1_BPTX_LUT2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B1NotB2": { + "name": "L1_BPTX_LUT2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B2NotB1": { + "name": "L1_BPTX_LUT2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_NotOR": { + "name": "L1_BPTX_LUT2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.75390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_AND": { + "name": "L1_BPTX_TRIG2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.458984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B1NotB2": { + "name": "L1_BPTX_TRIG2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B2NotB1": { + "name": "L1_BPTX_TRIG2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_NotOR": { + "name": "L1_BPTX_TRIG2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.048828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.458984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_AND": { + "name": "L1_BRIL_TRIG3_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.458984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_delayedAND": { + "name": "L1_BRIL_TRIG3_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_ref": { + "name": "L1_BRIL_TRIG3_ref", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.458984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.689453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.39453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 270.314453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 180.388671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 191.701171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.064453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.833984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.123046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.080078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 310.416015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.076171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 282.783203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 256.654296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 336.158203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 330.689453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 328.048828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 324.880859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 322.779296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 319.701171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 270.06640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.8125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.37890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.068359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.275390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.384765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.412109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.486328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.04296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.41796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.11328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.43359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.056640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.666015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.07421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.013671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 220.5703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.46875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.958984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 277.67578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 254.45703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.5546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.2890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.48828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 281.3515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.69921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 321.0546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.337890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.646484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.0234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.93359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.67578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.92578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.00390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.03125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.89453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.19921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.291015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.583984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.505859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.322265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.630859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.146484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 253.248046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 295.005859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 279.173828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 312.447265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 302.115234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 294.357421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 270.15625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.58203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 385.54296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 232.7421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.837890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 297.146484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 265.26953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 276.794921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 333.220703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 329.478515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 311.8125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 400.134765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 393.033203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 394.76953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 380.1875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 372.92578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 368.5, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.0546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 378.78515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 339.767578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 339.7421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.279296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.837890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.279296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.298828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.287109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 354.115234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 384.544921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 403.96875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 404.390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 337.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 250.376953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 364.732421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.595703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.021484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.884765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 192.134765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.150390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.603515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.943359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.423828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.892578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.677734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 329.009765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 396.322265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 389.521484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 380.982421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 371.427734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 362.013671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 337.892578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.20703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.5078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.90625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.6953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.51171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.38671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.8359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.28125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 286.6484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 294.01953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 308.1171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 316.80859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 370.05859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 380.66796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 362.7265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 373.3203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 355.23046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 365.375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 347.0234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 357.05078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.93359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.189453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.884765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.58984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 241.732421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.029296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.990234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.59375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.111328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.62890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.818359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.818359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.005859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.55859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.279296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.279296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.095703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.669921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 312.677734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 311.623046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 331.263671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 329.572265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 396.873046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 393.431640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 386.912109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 381.189453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 372.814453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.93359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 350.259765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 340.908203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.59375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.39453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.75390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.400390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.818359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.005859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 208.111328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.384765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.36328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.990234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.935546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 245.076171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 269.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.408203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.240234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.791015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.513671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.587890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.119140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 110.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 175.33203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 106.220703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 77.90625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.916015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.533203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.068359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 122.314453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.291015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.75390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.92578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.974609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.064453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.87109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.03515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.8203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.06640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.65234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.587890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.939453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 109.931640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.689453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.53515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.888671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 112.767578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 177.1015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 107.990234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 79.67578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.685546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.302734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.837890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 124.083984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.060546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 59.408203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 59.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 59.6953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.744140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.833984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.8046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.47265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.47265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.357421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.708984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 111.673828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.75390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.20703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.529296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.521484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.755859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.08203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.162109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.34765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.044921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.826171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.466796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.9765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.568359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.47265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.11328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.04296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.77734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.03515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.32421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.212890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.337890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.47265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.744140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.259765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.0703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.240234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.458984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.677734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.154296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.169921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.8125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.3125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.6171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.857421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.8828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.9765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.66796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.53515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.12109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.587890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.90625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.548828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.04296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.78125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.935546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.607421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.8046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.07421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.205078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.294921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.658203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.2421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.12109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.263671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.716796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.408203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.080078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.81640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.607421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.517578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.818359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.365234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.587890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.724609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.009765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.376953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.13671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.3984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.3125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.71484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.576171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.0859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.556640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.65234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.505859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.689453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.533203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.212890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.337890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.470703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.5859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.263671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 140.861328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 177.15625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.333984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 164.294921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.279296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.001953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 170.64453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 168.732421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 159.439453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.458984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.71875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.65625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.75390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.552734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.11328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.9765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.65234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.91796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.724609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.267578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.251953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.00390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.78125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.822265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.443359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.357421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.31640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.0546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.970703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.443359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.9921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.810546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.884765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.04296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.96484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.806640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.54296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.310546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.17578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.83984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.16015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.333984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.533203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.58984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.919921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 150.828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.5078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 168.513671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 146.544921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 209.51171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 163.0, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.955078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.06640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.78125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.78125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.130859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.96875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 128.302734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.923828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.2265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.44140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.818359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.818359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.408203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.408203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.47265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.47265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.93359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.93359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.93359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.58984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.62890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.212890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.626953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.306640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.248046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.669921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.177734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.521484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.740234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.755859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.798828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.46875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.5390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.78125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.56640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.80859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.66015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.1875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.16796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.34765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.806640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.982421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.591796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.033203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.216796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.994140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.0625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.9609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.298828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.326171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.501953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.455078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.322265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.380859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.09765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.78515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.810546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.857421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.103515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.033203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.732421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.193359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.701171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.052734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.888671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.283203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.630859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.470703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.13671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.966796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.017578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.185546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.685546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.830078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.021484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.52734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.19921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.18359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.537109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.4140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.01171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.064453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.408203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.716796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.197265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.529296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.95703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.607421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.916015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.826171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.662109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.337890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.787109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.53515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.37890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.388671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.6015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.40234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.7578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.21875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.119140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.294921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.943359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.970703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.5546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.751953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.560546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.50390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.7421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.767578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.236328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.873046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.177734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.138671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.095703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.326171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.373046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.24609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.91796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.029296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.8515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.771484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.15234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.73828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.25390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.53125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.09375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.189453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.541015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.666015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.33203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.873046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.474609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.931640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 290.63671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 390.921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 273.525390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 316.240234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 212.8671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 224.330078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 275.4453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 231.880859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 164.02734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 209.060546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 177.794921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 172.255859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 194.583984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.94140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.669921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 152.2734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.587890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 325.560546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 303.033203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 173.232421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.9296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.2578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.0859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.994140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.6953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.3125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.38671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.60546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.8828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.49609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.0, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.5078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.14453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.41015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.61328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.73046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.3359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.73828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.908203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.345703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.294921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.728515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.208984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.208984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.396484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.173828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.72265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.72265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.634765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.830078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.443359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.404296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.27734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.37890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.220703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.939453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.802734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.8359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.900390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.423828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.048828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.537109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.548828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.634765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.798828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.037109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.32421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.0625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.0625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.0625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.2265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.82421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.263671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.13671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.548828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.587890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.677734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.37890625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.603515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.767578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.357421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.443359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.314453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.37109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.19921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.30859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.408203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.126953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.716796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.662109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 277.814453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.490234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.326171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.939453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.560546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.41015625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.177734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.787109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.818359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.763671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.197265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.482421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.900390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.9765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.400390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.8828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.2421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.9609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 129.953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.0234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.330078125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.5234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.318359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.2734375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.15234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.31640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.8203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.849609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.591796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.755859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.38671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.7109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.728515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.431640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.060546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.990234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.05859375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.923828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.83203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.9375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.83203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.83203125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.126953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.126953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.126953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.998046875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.29296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.798828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.76953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.5625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.68359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.814453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.634765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.099609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.978515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.39453125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.98828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.1640625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.458984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.048828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.048828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.869140625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.75390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.458984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.279296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.93359375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.228515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.697265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.57421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.638671875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.2421875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.716796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.716796875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.703125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.751953125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.486328125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.103515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.912109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.44921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.3984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.40625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.4609375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.10546875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.0234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.0, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.537109375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.173828125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.96875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.5390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.69921875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.75390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain_BRIL": { + "name": "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.947265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain_copy": { + "name": "HLT_ZeroBias_FirstBXAfterTrain_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.767578125, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.865234375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.5400390625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.822265625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.171875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.21484375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.84375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.83984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.83984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.83984375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.84375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8515625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.84765625, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.84375, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4296875, + "entries": 2238235, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 62.771484375, + "entries": 2238235, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 73.814453125, + "entries": 2238235, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 6056.720703125, + "entries": 2238235, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 16874.609375, + "entries": 165112.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11728.640625, + "entries": 2238235, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 11650.939453125, + "entries": 2238235, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 100167.798828125, + "entries": 11556172.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 12828.439453125, + "entries": 2238235, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 12908.810546875, + "entries": 2238235, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 209683.1171875, + "entries": 1954719.9999999998, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 68779.837890625, + "entries": 421980.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 3877.33203125, + "entries": 112626.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 64395.60546875, + "entries": 2689800.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 543389.052734375, + "entries": 12399096.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 42502.833984375, + "entries": 2238235, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 100478.1875, + "entries": 1421723.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 42271.658203125, + "entries": 2238235, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 17642.8896484375, + "entries": 510899.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 237017.10546875, + "entries": 2948895.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 140454.1171875, + "entries": 2983842.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 13571.1630859375, + "entries": 1273728.9999999998, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 65999.107421875, + "entries": 2238235, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11688.966796875, + "entries": 2238235, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12091.4921875, + "entries": 2238235, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 6963.8984375, + "entries": 2238235, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7068.3515625, + "entries": 2238235, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 7405.67578125, + "entries": 2238235, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7448.056640625, + "entries": 2238235, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 7151.197265625, + "entries": 2238235, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 68905.791015625, + "entries": 13172356.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 7764.873046875, + "entries": 2238235, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 7540.716796875, + "entries": 2238235, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 7797.9609375, + "entries": 2238235, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 7813.07421875, + "entries": 2238235, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 938.96875, + "entries": 2238235, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1464.298828125, + "entries": 2238235, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1096.716796875, + "entries": 2238235, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 18500.298828125, + "entries": 514100.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 75791.970703125, + "entries": 1260131.9999999998, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 11846.99609375, + "entries": 2238235, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 84534.376953125, + "entries": 7194574.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 12495.900390625, + "entries": 6713855.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 23138.11328125, + "entries": 2238235, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 81289.958984375, + "entries": 2237511.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 44386.1123046875, + "entries": 2238235, + "subs": [ + "L1_AlwaysTrue", + "L1_BPTX_LUT1_AND", + "L1_BPTX_LUT1_B1", + "L1_BPTX_LUT1_B2", + "L1_BPTX_LUT1_OR", + "L1_BPTX_LUT2_AND", + "L1_BPTX_LUT2_B1NotB2", + "L1_BPTX_LUT2_B2NotB1", + "L1_BPTX_LUT2_NotOR", + "L1_BPTX_TRIG2_AND", + "L1_BPTX_TRIG2_B1NotB2", + "L1_BPTX_TRIG2_B2NotB1", + "L1_BPTX_TRIG2_NotOR", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BRIL_TRIG3_AND", + "L1_BRIL_TRIG3_delayedAND", + "L1_BRIL_TRIG3_ref", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_ETT40_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 4004.453125, + "entries": 2238235, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 55.689453125, + "entries": 2238235, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 57.75390625, + "entries": 2238235, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 42754.578125, + "entries": 2238235, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "HLT_ZeroBias_FirstBXAfterTrain_copy", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 57.75390625, + "entries": 2238235, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 6, + "allsize": 0.091796875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.091796875, + "entries": 6, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.091796875, + "entries": 6, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 2782, + "allsize": 3.0166015625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2138671875, + "entries": 2782, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 2.1162109375, + "entries": 2782, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2275390625, + "entries": 2782, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.2265625, + "entries": 2782, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.232421875, + "entries": 2782, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2138671875, + "entries": 2782, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 2.1162109375, + "entries": 2782, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2275390625, + "entries": 2782, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.2265625, + "entries": 2782, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.232421875, + "entries": 2782, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30529/SingleElectron_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30529/SingleElectron_doc.html new file mode 100644 index 000000000..77830d104 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30529/SingleElectron_doc.html @@ -0,0 +1,1643 @@ + + + + Documentation for 43B00DA0-41AF-D042-9F41-7F95FBE5E59F.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30529/SingleElectron_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30529/SingleElectron_doc.json new file mode 100644 index 000000000..37cf57d64 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30529/SingleElectron_doc.json @@ -0,0 +1,13984 @@ +{ + "filename": "43B00DA0-41AF-D042-9F41-7F95FBE5E59F.root", + "filesize": 103403.947265625, + "trees": { + "Events": { + "entries": 112955, + "allsize": 99225.9384765625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 3.26171875, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 3.54296875, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 300.6484375, + "entries": 112955, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 13.44140625, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 31.376953125, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 37.34375, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 33.212890625, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 33.380859375, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 28.55859375, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 27.513671875, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 27.283203125, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 37.53515625, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 21.998046875, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 42.248046875, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 33.591796875, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 33.595703125, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 32.107421875, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 30.607421875, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 34.765625, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 33.34375, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 41.73046875, + "entries": 7280.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 19.587890625, + "entries": 7280.000000000001, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 21.15234375, + "entries": 7280.000000000001, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 17.412109375, + "entries": 7280.000000000001, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 22.12109375, + "entries": 7280.000000000001, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 19.875, + "entries": 7280.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 17.232421875, + "entries": 7280.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 21.787109375, + "entries": 7280.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 21.748046875, + "entries": 7280.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 21.791015625, + "entries": 7280.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 214.06640625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 198.984375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 181.828125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 214.84375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 199.38671875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 178.1953125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 58.46875, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 450.4072265625, + "entries": 513414.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 1187.947265625, + "entries": 513414.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 773.474609375, + "entries": 513414.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 1200.142578125, + "entries": 513414.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 840.11328125, + "entries": 513414.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 255.5546875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 393.125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 258.609375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 392.7890625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 28.1796875, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 277.15234375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 276.59765625, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 76.2109375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 76.26171875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 330.400390625, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 211.1484375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 191.029296875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 144.8984375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 141.5234375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 348.2578125, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 232.783203125, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 351.177734375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 236.85546875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 367.78125, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 343.71484375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 243.71875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 366.27734375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 223.7421875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 330.822265625, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 271.166015625, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 285.390625, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 331.498046875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 380.708984375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 309.255859375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 399.205078125, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 408.001953125, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 424.548828125, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 376.435546875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 369.453125, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 516.451171875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 268.103515625, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 277.419921875, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 279.62109375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 320.65234375, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 349.251953125, + "entries": 127716.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 98.900390625, + "entries": 127716.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 120.650390625, + "entries": 127716.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 113.732421875, + "entries": 127716.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 98.6015625, + "entries": 127716.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 104.69140625, + "entries": 127716.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 104.7265625, + "entries": 127716.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 223.27734375, + "entries": 127716.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 193.52734375, + "entries": 127716.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 73.376953125, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 80.578125, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 80.142578125, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 112.345703125, + "entries": 127716.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 89.951171875, + "entries": 127716.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 81.31640625, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 82.4140625, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 82.228515625, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 81.4609375, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 82.57421875, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 81.900390625, + "entries": 127716.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 63.845703125, + "entries": 127716.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 19.6484375, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 44.158203125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 68.9453125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 73.21484375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 68.19921875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 71.3984375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 70.58984375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 69.67578125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 61.552734375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 67.966796875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 66.544921875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 61.134765625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 68.03515625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 64.578125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 66.322265625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 60.263671875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 67.94140625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 63.94921875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 71.1328125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 64.5390625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 66.984375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 73.353515625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 71.958984375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 71.853515625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 81.06640625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 67.611328125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 62.10546875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 54.517578125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 36.521484375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 66.11328125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 72.80859375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 70.83984375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 71.36328125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 74.220703125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 72.810546875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 72.341796875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 64.140625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 73.892578125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 71.646484375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 71.916015625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 69.037109375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 81.203125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 62.650390625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 50.5390625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 68.990234375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 69.123046875, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 69.455078125, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 69.509765625, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 58.974609375, + "entries": 21714.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 28.86328125, + "entries": 21714.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 33.884765625, + "entries": 21714.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 33.744140625, + "entries": 21714.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 33.271484375, + "entries": 21714.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 29.048828125, + "entries": 21714.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 42.11328125, + "entries": 21714.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 4.21484375, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 7.927734375, + "entries": 228.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 7.587890625, + "entries": 228.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 7.603515625, + "entries": 228.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 7.51171875, + "entries": 228.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 7.8828125, + "entries": 228.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 6.943359375, + "entries": 228.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 37.671875, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 304.291015625, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 301.6044921875, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 321.009765625, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 241.6044921875, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 194.8193359375, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 322.169921875, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 263.4404296875, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 221.5439453125, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 140.5009765625, + "entries": 114855.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 81.9521484375, + "entries": 114855.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 85.4482421875, + "entries": 114855.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 83.6171875, + "entries": 114855.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 73.92578125, + "entries": 114855.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 56.341796875, + "entries": 114855.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 65.77734375, + "entries": 114855.99999999999, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 55.02734375, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 383.47265625, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 721.396484375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 676.705078125, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 622.212890625, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 636.451171875, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 933.201171875, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 780.208984375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 863.388671875, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 826.96484375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 264.140625, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 604.65625, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 605.728515625, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 1122.556640625, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 189.630859375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 189.794921875, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 864.20703125, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 147.37109375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 722.056640625, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 679.55078125, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 617.345703125, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 1112.818359375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 862.82421875, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 868.46484375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 630.255859375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 701.126953125, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 722.46484375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 583.146484375, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 709.8671875, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 601.650390625, + "entries": 477550.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 180.828125, + "entries": 477550.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 106.09375, + "entries": 477550.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 105.736328125, + "entries": 477550.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 131.794921875, + "entries": 477550.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 169.478515625, + "entries": 477550.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 118.60546875, + "entries": 477550.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 102.0, + "entries": 477550.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 169.89453125, + "entries": 477550.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 118.1953125, + "entries": 477550.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 221.7734375, + "entries": 477550.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 363.939453125, + "entries": 477550.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 98.61328125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 96.77734375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 97.98828125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 98.5859375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 16.125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 7.4375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 16.609375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 16.0390625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 16.28515625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 105.796875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 106.6015625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 35.16015625, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 486.60546875, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 110.826171875, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 321.3515625, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 321.197265625, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 223.05078125, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 330.0, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 219.083984375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 318.669921875, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 476.5859375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 230.876953125, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 346.896484375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 191.052734375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 317.43359375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 335.49609375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 261.1328125, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 347.318359375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 488.75, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 425.40234375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 304.9609375, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 271.3828125, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 250.216796875, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 460.25, + "entries": 118177.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 94.1328125, + "entries": 118177.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 90.5234375, + "entries": 118177.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 94.044921875, + "entries": 118177.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 73.15625, + "entries": 118177.00000000001, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 89.15234375, + "entries": 118177.00000000001, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 222.07421875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 221.765625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 147.03515625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 182.37109375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 146.98046875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 257.6953125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 392.515625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 212.6328125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 178.36328125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 178.71875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 23.8828125, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 139.13671875, + "entries": 42708.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 148.462890625, + "entries": 42708.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 148.560546875, + "entries": 42708.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 43.025390625, + "entries": 42708.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 43.046875, + "entries": 42708.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 130.916015625, + "entries": 42708.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 51.75, + "entries": 42708.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 18.90625, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 69.203125, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 49.599609375, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 69.69140625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 70.259765625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 52.13671875, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 71.21484375, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 67.287109375, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 48.525390625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 57.5078125, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 30.845703125, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 76.224609375, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 64.119140625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 80.873046875, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 72.998046875, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 84.791015625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 71.08984375, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 87.630859375, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 53.10546875, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 64.49609375, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 67.3515625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 41.1640625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 49.306640625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 29.728515625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 57.291015625, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 60.513671875, + "entries": 17509.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 30.814453125, + "entries": 17509.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 34.708984375, + "entries": 17509.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 34.51953125, + "entries": 17509.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 38.435546875, + "entries": 17509.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 30.8359375, + "entries": 17509.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 28.53125, + "entries": 17509.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 27.177734375, + "entries": 17509.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 28.830078125, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 28.287109375, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 27.548828125, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 28.947265625, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 28.943359375, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 28.935546875, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 28.40625, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 33.587890625, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 28.9140625, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 28.712890625, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 28.001953125, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 31.4765625, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 28.560546875, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 25.68359375, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 25.458984375, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 31.49609375, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 29.873046875, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 28.783203125, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 28.01171875, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 27.94921875, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 29.33984375, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 29.052734375, + "entries": 17509.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 24.4296875, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 290.15625, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 289.87109375, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 76.5, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 76.32421875, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 190.921875, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 264.58984375, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 403.828125, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 246.9765625, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 221.380859375, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 329.34765625, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 327.412109375, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 497.728515625, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 421.947265625, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 408.0390625, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 569.400390625, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 290.751953125, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 305.64453125, + "entries": 144837.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 76.322265625, + "entries": 144837.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 119.087890625, + "entries": 144837.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 116.0, + "entries": 144837.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 108.734375, + "entries": 144837.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 115.123046875, + "entries": 144837.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 76.3203125, + "entries": 144837.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 177.04296875, + "entries": 144837.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 84.462890625, + "entries": 144837.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 85.09375, + "entries": 144837.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 84.3359375, + "entries": 144837.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 84.423828125, + "entries": 144837.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 84.333984375, + "entries": 144837.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 79.94140625, + "entries": 144837.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 64.388671875, + "entries": 144837.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 33.86328125, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 282.3505859375, + "entries": 104862.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 314.9599609375, + "entries": 104862.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 63.14453125, + "entries": 104862.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 63.2041015625, + "entries": 104862.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 81.515625, + "entries": 104862.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 81.9599609375, + "entries": 104862.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 88.2783203125, + "entries": 104862.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 63.208984375, + "entries": 104862.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 256.90625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 213.27734375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 213.24609375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 213.15625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 213.2421875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 213.15625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 213.390625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 392.00390625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 201.40234375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 201.37109375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 200.76171875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 200.515625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 200.67578125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 201.21875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 198.04296875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 214.18359375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 199.46875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 178.1640625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 213.1484375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 200.6953125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 196.92578125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 362.32421875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 359.08984375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 369.8203125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 384.8359375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 374.15234375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 17.5, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 1092.5205078125, + "entries": 656381.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 1079.8876953125, + "entries": 656381.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 1242.24609375, + "entries": 656381.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 390.109375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 354.35546875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 389.76953125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 383.37890625, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 43.6328125, + "entries": 112955, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 72.8515625, + "entries": 112955, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 52.33203125, + "entries": 112955, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 33.89453125, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 283.60546875, + "entries": 104862.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 272.4921875, + "entries": 104862.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 88.2294921875, + "entries": 104862.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 16.890625, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 61.484375, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 62.328125, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 79.1328125, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 72.763671875, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 57.169921875, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 56.818359375, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 79.08984375, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 68.427734375, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 48.7109375, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 67.673828125, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 64.263671875, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 61.380859375, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 58.716796875, + "entries": 23981.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 28.33984375, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 186.11328125, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 251.669921875, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 284.6875, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 268.455078125, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 221.10546875, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 224.06640625, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 156.123046875, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 145.76953125, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 130.953125, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 268.470703125, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 99.734375, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 362.40234375, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 227.06640625, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 240.583984375, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 214.498046875, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 200.40234375, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 192.22265625, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 156.0859375, + "entries": 88553.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 82.390625, + "entries": 88553.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 93.306640625, + "entries": 88553.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 90.62890625, + "entries": 88553.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 61.349609375, + "entries": 88553.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 60.21875, + "entries": 88553.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 69.837890625, + "entries": 88553.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 93.48828125, + "entries": 88553.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 106.5859375, + "entries": 88553.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 80.361328125, + "entries": 88553.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 213.16796875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 200.24609375, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 185.421875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 46.66796875, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 722.625, + "entries": 318432.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 679.708984375, + "entries": 318432.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 686.181640625, + "entries": 318432.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 452.46875, + "entries": 318432.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 96.15625, + "entries": 318432.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 432.18359375, + "entries": 318432.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 157.8671875, + "entries": 318432.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 160.369140625, + "entries": 318432.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 97.76171875, + "entries": 318432.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 250.8984375, + "entries": 318432.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 3.36328125, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 627.041015625, + "entries": 338852.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 156.76953125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 138.75, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 122.8671875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 307.53125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 130.20703125, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 174.8046875, + "entries": 112955, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 72.28125, + "entries": 112955, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 70.890625, + "entries": 112955, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 28.53515625, + "entries": 112955, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 144.294921875, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 139.921875, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 144.17578125, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 139.576171875, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 96.861328125, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 66.779296875, + "entries": 51168.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 61.99609375, + "entries": 127716.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 143.482421875, + "entries": 477550.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 28.78515625, + "entries": 17509.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 61.171875, + "entries": 144837.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 58.107421875, + "entries": 88553.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 129.595703125, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 168.54296875, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 138.197265625, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 105.548828125, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 167.6328125, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 141.662109375, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 154.7734375, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 154.02734375, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 172.25, + "entries": 51168.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 53.546875, + "entries": 51168.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.01953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.46484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.3515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.83984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.5078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.84375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.46875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.70703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.55859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.24609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.87109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.74609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.01953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.38671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.00390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.92578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.5546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.20703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.40234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.38671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.68359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.55078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.42578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.2734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.34375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.30078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.56640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.94921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.24609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.76953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.21484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.46484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.22265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.79296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.10546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.66796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.86328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.3359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.2265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.87890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.59375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.32421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.23828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.69140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.35546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.17578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.62890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.00390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.23828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.22265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.39453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.3828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.23828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.23828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.2265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.26171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.04296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.05078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.02734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.6953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.3515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.59765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.80078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.7421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.66796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.6484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.73828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.2734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.5859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.69140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.5703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.34765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.8984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.98828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.35546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.10546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.97265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.39453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.4453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.24609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.11328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.93359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.69921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.64453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.45703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.21875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.57421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.51953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.19921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.5, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.5390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.13671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.5234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.2421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.28125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.21875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.59765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.13671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.39453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.11328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.23046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.0625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.07421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.95703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.22265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.1328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.11328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.00390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.97265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.78515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.7734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.03515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.97265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.3046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.87890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.27734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.19921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.1875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.94921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.14453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.10546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.95703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.2109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.49609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.34765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.11328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 4.3359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.28125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.2265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.33984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 6.48046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.0859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.00390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.01953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.33984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.08984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.33984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.3203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.2109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 3.28515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 5.39453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 2.8984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 5.58984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.44140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 5.20703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 4.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.3203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.43359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 6.57421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.09765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.11328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.43359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.18359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.4140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.3046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 3.37890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 5.48828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.31640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.04296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.11328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.30859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.21875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.3203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.1875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.19921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.19140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.21484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.45703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.27734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.05859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.08984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.05859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.44140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.45703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.46875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.33203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.78515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.05859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.5625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.5546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.38671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.7265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.99609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.75390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.8046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.34765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.85546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.51953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.0, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.87109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.87890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.91015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.71484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.12890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.2421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.12109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.24609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.48046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.62109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.77734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.88671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.46484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.45703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.82421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.62109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.04296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.45703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.44140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.91796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.11328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.15625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.94140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.98828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.12109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.33203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.15625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.46484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.36328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.96484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.99609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.88671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.08203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.10546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.65625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.76953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.69140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.40234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.58203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.55859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.33984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.12890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.90625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.94921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.99609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.05078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.12890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.56640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.90625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.90625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.95703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.94140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.04296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.07421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.40625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.21484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.05859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.09765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.15234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.07421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.09375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.09375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.35546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.32421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.28515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.90625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.90234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.90234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.96484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.98828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.09765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.94921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.66796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.10546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.41796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.43359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.47265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.55859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.69921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.04296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.92578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.47265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.91796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.07421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.87890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.33203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.32421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.65234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.47265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.05859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.46484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.8046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.62890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.75390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.99609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.66796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.80859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.44921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.51171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.07421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.08984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.24609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.31640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.26953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.31640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.71875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.54296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.41796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.6953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.94140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.90625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.89453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.76953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.73828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.43359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.21484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.27734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.38671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.07421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.30078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.7578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.26171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.23828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.27734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.31640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.28125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.50390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.50390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.59375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.94921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.21875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.86328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.45703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.36328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.52734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.40234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.75, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.94921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.87890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.53125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.21875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.05859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.01171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.53125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.3125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.29296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.29296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.40234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.65234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.48046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37109375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.47265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.84375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.7421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.12890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.03125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.73828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.5859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.74609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2734375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.93359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2421875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.74609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.09765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.70703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.72265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.34375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2265625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.23046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.37890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.41796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.15625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.13671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.08984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.85546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.26953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3046875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.6015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.05859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.80859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.12890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.44140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.08203125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 5.6640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.01953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.61328125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.015625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.50390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9765625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0390625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9609375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0859375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0546875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.3515625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4296875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1640625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.96484375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9453125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.93359375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.90234375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8828125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.94140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.921875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.91796875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9140625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.08984375, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.6171875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.890625, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.88671875, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.95703125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0078125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2578125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.1953125, + "entries": 112955, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 3.26171875, + "entries": 112955, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 3.54296875, + "entries": 112955, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 300.6484375, + "entries": 112955, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 756.341796875, + "entries": 7280.000000000001, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 594.87890625, + "entries": 112955, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 592.42578125, + "entries": 112955, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 4510.5537109375, + "entries": 513414.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 648.6796875, + "entries": 112955, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 651.3984375, + "entries": 112955, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 12477.935546875, + "entries": 127716.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 3438.265625, + "entries": 21714.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 49.671875, + "entries": 228.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 2795.71875, + "entries": 114855.99999999999, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 21230.509765625, + "entries": 477550.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 676.859375, + "entries": 112955, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 7514.7109375, + "entries": 118177.00000000001, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 2140.15234375, + "entries": 112955, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 1407.0029296875, + "entries": 42708.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 2454.470703125, + "entries": 17509.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 6652.033203125, + "entries": 144837.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 1072.4853515625, + "entries": 104862.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 3332.3671875, + "entries": 112955, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 591.81640625, + "entries": 112955, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 610.76953125, + "entries": 112955, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 362.32421875, + "entries": 112955, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 359.08984375, + "entries": 112955, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 369.8203125, + "entries": 112955, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 384.8359375, + "entries": 112955, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 374.15234375, + "entries": 112955, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 3432.154296875, + "entries": 656381.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 390.109375, + "entries": 112955, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 354.35546875, + "entries": 112955, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 389.76953125, + "entries": 112955, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 383.37890625, + "entries": 112955, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 43.6328125, + "entries": 112955, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 72.8515625, + "entries": 112955, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 52.33203125, + "entries": 112955, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 854.8515625, + "entries": 23981.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 4655.025390625, + "entries": 88553.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 598.8359375, + "entries": 112955, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 3782.888671875, + "entries": 318432.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 630.404296875, + "entries": 338852.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 1174.1015625, + "entries": 112955, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 2145.921875, + "entries": 51168.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 1645.88671875, + "entries": 112955, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT35_BptxAND", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 205.61328125, + "entries": 112955, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 2.8984375, + "entries": 112955, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 3.0078125, + "entries": 112955, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 2048.1875, + "entries": 112955, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 3.0078125, + "entries": 112955, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 2, + "allsize": 0.076171875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.076171875, + "entries": 2, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.076171875, + "entries": 2, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 33, + "allsize": 0.88671875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.1630859375, + "entries": 33, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.220703125, + "entries": 33, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.1689453125, + "entries": 33, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.16796875, + "entries": 33, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.166015625, + "entries": 33, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.1630859375, + "entries": 33, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.220703125, + "entries": 33, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.1689453125, + "entries": 33, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.16796875, + "entries": 33, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.166015625, + "entries": 33, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30530/SingleMuon_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30530/SingleMuon_doc.html new file mode 100644 index 000000000..784653579 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30530/SingleMuon_doc.html @@ -0,0 +1,1684 @@ + + + + Documentation for 0A4230E2-0C75-604D-890F-A4CE5E5C164E.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrain_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrain_BRILBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_refBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30530/SingleMuon_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30530/SingleMuon_doc.json new file mode 100644 index 000000000..d718d72c8 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30530/SingleMuon_doc.json @@ -0,0 +1,14394 @@ +{ + "filename": "0A4230E2-0C75-604D-890F-A4CE5E5C164E.root", + "filesize": 2296615.138671875, + "trees": { + "Events": { + "entries": 2939781, + "allsize": 2290423.7294921875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 69.3095703125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 76.3955078125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 7841.5810546875, + "entries": 2939781, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 331.3330078125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 784.2578125, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 918.0546875, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 814.20703125, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 816.3125, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 722.10546875, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 648.6171875, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 669.10546875, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 922.33203125, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 600.203125, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 1016.31640625, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 816.69921875, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 867.95703125, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 795.98046875, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 757.91796875, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 850.73828125, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 825.33984375, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 1045.515625, + "entries": 182794.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 475.515625, + "entries": 182794.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 508.2890625, + "entries": 182794.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 420.98046875, + "entries": 182794.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 517.1015625, + "entries": 182794.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 510.66015625, + "entries": 182794.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 442.66015625, + "entries": 182794.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 524.23828125, + "entries": 182794.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 527.234375, + "entries": 182794.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 531.01953125, + "entries": 182794.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 5531.1611328125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 5116.90625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4656.8076171875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 5545.2734375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 5135.3818359375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 4551.068359375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1508.2998046875, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 12173.7607421875, + "entries": 14128842.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 32286.4658203125, + "entries": 14128842.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 21061.8857421875, + "entries": 14128842.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 32635.53125, + "entries": 14128842.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 22825.841796875, + "entries": 14128842.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 6597.2216796875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 10213.630859375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 6674.8486328125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 10202.79296875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 535.2060546875, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1793.6328125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 1792.6171875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 767.3359375, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 766.21484375, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2085.83203125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 951.19921875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 951.19140625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 925.59765625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 928.2578125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2190.30078125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1598.79296875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2221.8359375, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1603.9921875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2390.42578125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2123.60546875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1669.39453125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 2274.203125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1625.66015625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2109.7734375, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1739.78515625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1804.12890625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 2076.67578125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2789.171875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2490.80078125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 2398.4921875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 2476.3046875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 2804.28125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2629.19140625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 2270.4765625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 2875.640625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1830.90234375, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1839.30859375, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1880.85546875, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 2074.23828125, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1788.34765625, + "entries": 604400.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 904.75, + "entries": 604400.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 856.1875, + "entries": 604400.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1077.09375, + "entries": 604400.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 905.25, + "entries": 604400.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 934.5390625, + "entries": 604400.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 925.22265625, + "entries": 604400.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1806.95703125, + "entries": 604400.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1627.12890625, + "entries": 604400.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 760.46484375, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 737.66015625, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 847.26953125, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1019.3984375, + "entries": 604400.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 847.828125, + "entries": 604400.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 756.890625, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 770.12109375, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 784.9375, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 768.62890625, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 785.81640625, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 800.99609375, + "entries": 604400.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 732.84765625, + "entries": 604400.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 396.6494140625, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 816.6015625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1219.5234375, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 1303.4296875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 1236.96875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 1278.94140625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1254.11328125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 1266.49609375, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 1161.65625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 1205.296875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1190.8828125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1144.9140625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 1204.875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 1167.58203125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 1197.8828125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1138.16796875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 1201.2578125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 1152.58203125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 1269.84765625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1202.59375, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 1289.15625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1305.44921875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1291.50390625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1284.0390625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 1408.36328125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 1185.78515625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 1136.80078125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1029.4609375, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 714.390625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 1211.4921875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 1298.30078125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 1286.62109375, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 1296.46875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 1318.66796875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 1303.73828125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 1299.41796875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1210.70703125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 1315.1875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 1295.2265625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 1287.2109375, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 1210.1171875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 1406.11328125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 1110.64453125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 906.75, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1200.4140625, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1199.5078125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1195.328125, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1194.87109375, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1052.1796875, + "entries": 352183.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 505.1171875, + "entries": 352183.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 620.8984375, + "entries": 352183.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 621.91796875, + "entries": 352183.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 576.890625, + "entries": 352183.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 619.37109375, + "entries": 352183.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 756.22265625, + "entries": 352183.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 260.94140625, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 714.92578125, + "entries": 102039.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 617.83203125, + "entries": 102039.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 617.625, + "entries": 102039.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 567.27734375, + "entries": 102039.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 685.2578125, + "entries": 102039.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 336.390625, + "entries": 102039.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 962.2529296875, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7739.3759765625, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7610.7158203125, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 8177.4892578125, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 5986.490234375, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4868.837890625, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 8238.1298828125, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6762.318359375, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5433.763671875, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3440.564453125, + "entries": 2919289.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 2115.166015625, + "entries": 2919289.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 2104.998046875, + "entries": 2919289.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 2239.873046875, + "entries": 2919289.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1790.0078125, + "entries": 2919289.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1403.2265625, + "entries": 2919289.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1646.96875, + "entries": 2919289.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1427.455078125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 9728.978515625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 18110.1015625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 17108.23046875, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 16090.9697265625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 16248.4111328125, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 23724.029296875, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 20004.6376953125, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 22275.5, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 21045.119140625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 3912.6796875, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 15001.9013671875, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 15149.2421875, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 28360.998046875, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4968.8994140625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4968.9033203125, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 21588.861328125, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 7713.33984375, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 18320.9072265625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 16950.095703125, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 15435.91015625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 27980.9482421875, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 21533.943359375, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 21939.916015625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 15241.6640625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 18044.3203125, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 18605.048828125, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 14329.19921875, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 18153.994140625, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 15195.7734375, + "entries": 12016594.999999998, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3420.490234375, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2641.791015625, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2701.7177734375, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 3164.9306640625, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 4289.498046875, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 4584.5703125, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 3005.0859375, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3423.87109375, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 4413.23828125, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 5683.59375, + "entries": 12016594.999999998, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 9125.515625, + "entries": 12016594.999999998, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 6237.115234375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1151.1396484375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1162.859375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1171.9521484375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 6114.6015625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 5912.4248046875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 6173.9052734375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 6010.5419921875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 6205.6787109375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 6512.6865234375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 6625.482421875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 626.71484375, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 4320.69921875, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1154.9609375, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3040.58984375, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3060.5234375, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2192.03125, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3122.15234375, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2188.28515625, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2974.140625, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 4100.87109375, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2344.0078125, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 3266.96875, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1948.42578125, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2947.80078125, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3366.48828125, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2674.90625, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 3244.3828125, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 4203.8671875, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 3913.0078125, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2787.91015625, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2596.88671875, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2321.3984375, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 3940.82421875, + "entries": 934100.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1172.37109375, + "entries": 934100.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1032.2734375, + "entries": 934100.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1172.16796875, + "entries": 934100.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1002.59765625, + "entries": 934100.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1092.61328125, + "entries": 934100.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 5738.103515625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 5740.763671875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 3778.6826171875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 4650.9833984375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 3776.9326171875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 6653.7744140625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 10164.65234375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 5495.927734375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 4601.4482421875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 4563.162109375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 337.2041015625, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1925.40625, + "entries": 577958.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 2047.779296875, + "entries": 577958.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 2049.123046875, + "entries": 577958.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 627.6435546875, + "entries": 577958.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 629.1455078125, + "entries": 577958.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1801.001953125, + "entries": 577958.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 736.0078125, + "entries": 577958.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 631.8974609375, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 10072.33984375, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 6121.72265625, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 9944.04296875, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 10120.33984375, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 6402.1328125, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 10661.4921875, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 9632.34375, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 7573.80859375, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 8217.4921875, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 2462.9453125, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 10889.23046875, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 8144.33984375, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 12124.44140625, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 10215.97265625, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 13269.01953125, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 10623.890625, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 15108.296875, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 6827.671875, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 8890.2109375, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 9447.3671875, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 5186.34765625, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 5766.39453125, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 2499.82421875, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 8922.4453125, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 9069.37890625, + "entries": 3800265.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 2659.6328125, + "entries": 3800265.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 3177.20703125, + "entries": 3800265.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 3319.57421875, + "entries": 3800265.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 3872.60546875, + "entries": 3800265.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 2665.44140625, + "entries": 3800265.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 2167.828125, + "entries": 3800265.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 2226.90234375, + "entries": 3800265.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 2096.6484375, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1858.3125, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1679.40234375, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1925.34765625, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1925.98046875, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1898.56640625, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1887.79296875, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2955.58984375, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1927.14453125, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1982.83203125, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 2075.30859375, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 2654.046875, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 2124.0234375, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 2589.25390625, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 1542.0703125, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 2861.9140625, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 2543.08203125, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1934.9296875, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 2096.62109375, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 2038.60546875, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 2316.140625, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1941.4453125, + "entries": 3800265.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 566.6220703125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1889.27734375, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 1892.20703125, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 799.76171875, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 798.21875, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1420.66015625, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 1844.23828125, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 2541.09765625, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 1822.9296875, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 1699.578125, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 1934.95703125, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 1997.9296875, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 3247.13671875, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 2993.15234375, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 2527.5859375, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 3190.8515625, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 2017.90625, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 2068.828125, + "entries": 700365.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 796.265625, + "entries": 700365.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 876.0625, + "entries": 700365.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 890.546875, + "entries": 700365.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 963.703125, + "entries": 700365.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1109.7734375, + "entries": 700365.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 796.16015625, + "entries": 700365.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 1575.0390625, + "entries": 700365.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 868.265625, + "entries": 700365.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 885.3671875, + "entries": 700365.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 871.21484375, + "entries": 700365.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 821.390625, + "entries": 700365.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 836.359375, + "entries": 700365.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 875.09765625, + "entries": 700365.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 761.62890625, + "entries": 700365.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 473.48828125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 3913.55078125, + "entries": 1448016.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 4357.3046875, + "entries": 1448016.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 899.68359375, + "entries": 1448016.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 901.37890625, + "entries": 1448016.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1150.03515625, + "entries": 1448016.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1158.7421875, + "entries": 1448016.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 1235.96875, + "entries": 1448016.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 901.0703125, + "entries": 1448016.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 6634.314453125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 5513.0478515625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 5512.3974609375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 5512.0322265625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 5512.7021484375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 5509.8408203125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 5518.7021484375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 10193.2822265625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 5155.2109375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 5154.560546875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 5154.73828125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 5156.001953125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 5157.0234375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 5156.962890625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 5128.2890625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 5535.078125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 5138.5537109375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4589.009765625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 5510.3291015625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 5152.3984375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 5095.5380859375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 9192.26171875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 9339.03515625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 9705.8671875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 9847.2587890625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 9485.2099609375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 523.107421875, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 27979.3232421875, + "entries": 16803502.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 27590.8193359375, + "entries": 16803502.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 31657.796875, + "entries": 16803502.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 10027.4912109375, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 9184.1455078125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 9996.88671875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 9744.1640625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 1011.84375, + "entries": 2939781, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1837.9599609375, + "entries": 2939781, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1280.7255859375, + "entries": 2939781, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 474.138671875, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 3896.09375, + "entries": 1448016.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 3766.17578125, + "entries": 1448016.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 1236.88671875, + "entries": 1448016.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 344.0751953125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1298.51953125, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1324.7265625, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 1581.7578125, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 1443.078125, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1186.06640625, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1182.33984375, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 1569.2890625, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 1377.92578125, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 968.76953125, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1402.06640625, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1351.8203125, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1296.15234375, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1250.04296875, + "entries": 470029.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 666.150390625, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 5520.08984375, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 7580.9453125, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 8436.53515625, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 8077.58203125, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 6486.828125, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 6565.58203125, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 4078.515625, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 2918.03515625, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 3579.28515625, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 8008.7890625, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 3406.8359375, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 11030.359375, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 6679.0859375, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 5542.640625, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 4569.00390625, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 7301.80859375, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 5622.2109375, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 4409.2734375, + "entries": 2755419.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 2290.1953125, + "entries": 2755419.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 2309.44140625, + "entries": 2755419.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2541.76953125, + "entries": 2755419.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 1695.9375, + "entries": 2755419.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 1826.3515625, + "entries": 2755419.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 1764.6875, + "entries": 2755419.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 2716.15625, + "entries": 2755419.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 2414.203125, + "entries": 2755419.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 1930.39453125, + "entries": 2755419.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 5503.7529296875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 5130.251953125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 4768.5126953125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1279.345703125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 20012.84765625, + "entries": 9687815.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 16456.609375, + "entries": 9687815.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 16242.58984375, + "entries": 9687815.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 11557.53515625, + "entries": 9687815.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 2547.59765625, + "entries": 9687815.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 13432.13671875, + "entries": 9687815.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 4276.3515625, + "entries": 9687815.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 3968.5, + "entries": 9687815.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 4458.1484375, + "entries": 9687815.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 5641.1796875, + "entries": 9687815.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 74.166015625, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 16165.265625, + "entries": 8815329.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 4103.3095703125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 3542.232421875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 3128.072265625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 7961.513671875, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 3414.9423828125, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 4335.900390625, + "entries": 2939781, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1872.5595703125, + "entries": 2939781, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1838.6884765625, + "entries": 2939781, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 793.1376953125, + "entries": 2939781, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 4407.1015625, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 4321.1640625, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 4399.73046875, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 4326.97265625, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2860.5390625, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1927.79296875, + "entries": 1674091.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 732.02734375, + "entries": 604400.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3658.7265625, + "entries": 12016594.999999998, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1978.109375, + "entries": 3800265.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 759.609375, + "entries": 700365.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1528.08984375, + "entries": 2755419.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3943.828125, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 5215.6640625, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 4254.078125, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 3237.9375, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 5192.35546875, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 4389.484375, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4742.203125, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4723.8359375, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 5344.83203125, + "entries": 1674091.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1564.625, + "entries": 1674091.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.3544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_AND": { + "name": "L1_BPTX_LUT1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B1": { + "name": "L1_BPTX_LUT1_B1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B2": { + "name": "L1_BPTX_LUT1_B2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_OR": { + "name": "L1_BPTX_LUT1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_AND": { + "name": "L1_BPTX_LUT2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B1NotB2": { + "name": "L1_BPTX_LUT2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B2NotB1": { + "name": "L1_BPTX_LUT2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_NotOR": { + "name": "L1_BPTX_LUT2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.98046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_AND": { + "name": "L1_BPTX_TRIG2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.6552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B1NotB2": { + "name": "L1_BPTX_TRIG2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B2NotB1": { + "name": "L1_BPTX_TRIG2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_NotOR": { + "name": "L1_BPTX_TRIG2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.3056640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.6552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.931640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_AND": { + "name": "L1_BRIL_TRIG3_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.6552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_delayedAND": { + "name": "L1_BRIL_TRIG3_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.931640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_ref": { + "name": "L1_BRIL_TRIG3_ref", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.6552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.029296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.029296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.6796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.029296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.7041015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.37890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.0595703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.5224609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.1513671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.2060546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.2490234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.2529296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.1357421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.1943359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.1083984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.3232421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.1142578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 281.7509765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 277.3720703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 275.4580078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 272.9970703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 271.2822265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 269.1220703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.8828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.8828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 239.353515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.111328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.779296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.2822265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.6103515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.9619140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 168.6591796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.0283203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.736328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.26171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.76171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 229.873046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.2373046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.521484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.7685546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.876953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.5986328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.193359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.9892578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 365.595703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 344.650390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 301.642578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 328.041015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 344.287109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.005859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.474609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.6591796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.5732421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.728515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.310546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.974609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.150390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.896484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.896484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 170.43359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 208.962890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 195.763671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 183.708984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.900390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.728515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.728515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.728515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.728515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0966796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.1708984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.1865234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.3505859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 208.2607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.4990234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.5380859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.0341796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 244.9716796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.1689453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.3603515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.2705078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.642578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.373046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.28515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 301.572265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.232421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.232421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.3828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 255.140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.3095703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 335.5673828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.943359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 321.6181640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 415.2802734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 382.8427734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 343.966796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 510.3037109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 466.7138671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 375.064453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 281.369140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 387.71875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 414.939453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.951171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 367.216796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.5595703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 403.138671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.6796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 198.18359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.3544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.4677734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.3544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.2451171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.0283203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 263.9072265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.2744140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.09375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 167.4013671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.2490234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 329.5458984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.7216796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.029296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.7509765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.3623046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.4130859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.5966796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.26171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.5537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.4013671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.6162109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.6943359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.0888671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.4287109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.9052734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.1240234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.0927734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.0185546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.5263671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.8505859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.9326171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.099609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.412109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.60546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.681640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.8828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.005859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.0234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.181640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.123046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.62109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.572265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.80078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 183.771484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.12890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.322265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.56640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 180.701171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 175.2109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.365234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.8408203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.28125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.7978515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.5673828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.69921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.1416015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 225.8369140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.5244140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.6875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 189.4736328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.7109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.88671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.5078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.2568359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.2568359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.46875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.3544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.3544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.8916015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.1630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.1923828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.9482421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.5205078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.4287109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 323.2939453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.9248046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 363.4072265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 334.4365234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 408.2041015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.021484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 447.8818359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 479.5673828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.892578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.740234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.98046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.5322265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.2724609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.6591796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.3505859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.3076171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.337890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.2861328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.4697265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.3349609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.6943359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.3310546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.880859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.4873046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.7568359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.3603515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.2080078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.982421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.5595703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 133.9189453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 211.3515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 124.6220703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 79.15625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.6142578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.935546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.3388671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.8642578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 101.5107421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.6650390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.9873046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.98046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.935546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.1484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.8525390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.6767578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.38671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.326171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.23046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 72.8828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.232421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.232421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.2080078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.6767578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 133.4228515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.7041015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.93359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.5107421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 135.8701171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 213.302734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 126.5732421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 81.107421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.5654296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.88671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 71.2900390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 73.8154296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 103.4619140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.6162109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.9384765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.931640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.88671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.099609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 73.8037109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.6279296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 73.337890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.27734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 73.435546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.18359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.18359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 71.1591796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.6279296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 135.2802734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.98046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.1064453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.6650390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.9306640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.8671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.2998046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.654296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.0693359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2255859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.6142578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.47265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.0224609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.32421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.197265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.68359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.12109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 166.716796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 141.392578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.4677734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.9990234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.62890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.8251953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.3310546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.248046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.5517578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.955078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.7705078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2314453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.2529296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.111328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.75, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.017578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4404296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.533203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.388671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.03515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.25390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.798828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.541015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.279296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.0224609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.2158203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.337890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.005859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.5966796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.248046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.689453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.0107421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.6259765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.5341796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.830078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.451171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.9150390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.9345703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.8017578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.474609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.865234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.2099609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.7607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.1552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.8935546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.970703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.8779296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.8310546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.931640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2568359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.1396484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.2138671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.3037109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.4208984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.7099609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.9609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.9921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.34765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.13671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.38671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.8779296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 260.970703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 128.7216796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.28515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.1416015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 181.689453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 187.619140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.7431640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 213.296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 239.3642578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.6533203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.2158203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 223.6845703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 170.220703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.1494140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 316.9150390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 479.08984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 492.2626953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 512.0908203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.6904296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.3466796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 329.1943359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 498.626953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 504.0888671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 514.7802734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.041015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.76953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.98046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1748046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 158.2734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.4453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5615234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.58203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.119140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.00390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.3212890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.9970703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4189453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.7578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.849609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.7470703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.9990234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.791015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.5498046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.958984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.7734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.4873046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.5263671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 241.095703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 231.3486328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 246.4765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 233.9248046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.7890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 166.96875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 234.7587890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 155.423828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 209.3173828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.130859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.291015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.4140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.8564453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.4912109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.751953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.74609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 200.7158203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 362.947265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 346.6953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.7900390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.4619140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.943359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.521484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.0712890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.822265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.037109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.037109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.1181640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.900390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 154.787109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 202.2392578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.2275390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.728515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.791015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.091796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.947265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2568359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2568359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9072265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9072265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.18359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.18359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.28125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.28125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.28125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.69140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.72265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.1416015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.5556640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.1806640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.1533203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2392578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.7041015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.3525390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.7275390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.7119140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.7587890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.271484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.470703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.611328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.240234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.396484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.642578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.404296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.333984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.380859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.341796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.8115234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9716796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.5771484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0654296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2412109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.5185546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.28125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.6611328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.6767578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1767578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.7900390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.3076171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.267578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.4326171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.03515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.8515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.6513671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.7470703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8017578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8173828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.2431640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.5986328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3447265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6806640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.1259765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.9111328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.7119140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.5712890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.154296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.6669921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.1748046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.1474609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.6552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.0537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.4013671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.931640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.41015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.28515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.423828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8681640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.380859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.494140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.2958984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.626953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9072265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.7607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.7919921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.1748046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.06640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.6435546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.3857421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.9677734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.7021484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.1435546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.7880859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.708984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.248046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.271484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.8447265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.0244140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.6328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.439453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.3359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.212890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.6123046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.6708984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.8076171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.8349609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.1875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.7607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.4599609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.93359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.79296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.8115234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.4990234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.8505859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.6982421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.9873046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.7568359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.3310546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.7060546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.5234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3076171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.1015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.8212890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.158203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.169921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.169921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.49609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.94921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.84375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.4306640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.2861328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.2490234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.193359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.8349609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.353515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.6083984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2255859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.3359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.09375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.8037109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.1845703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.0390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.9775390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.19921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.3564453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.6201171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.9169921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.0302734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.3310546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.482421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2724609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.3642578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.67578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.2080078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.8642578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.9931640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.7275390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.923828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.759765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.6845703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.50390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.5546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.248046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.537109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.666015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.533203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.380859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.49609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.033203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.041015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.060546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.060546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.087890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.119140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4833984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9443359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.52734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5615234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5693359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5927734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5966796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.6865234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.7216796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.26953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.4140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.60546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.6533203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.8173828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.9638671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.5703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.7763671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.740234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.73828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.6357421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4619140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3017578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.5869140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.3056640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.7939453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.4599609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.5966796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.2138671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.8974609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.6416015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.884765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.833984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.833984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.833984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.869140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.298828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.068359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.8271484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.857421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.9951171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.2080078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.435546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.1455078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.7607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.16015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.4658203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.5087890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.1591796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.7998046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.6982421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.6875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.337890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 138.521484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.767578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.51171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9072265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1103515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.7607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.5478515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.7001953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.8857421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.6689453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.6005859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.6787109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.92578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.8583984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8271484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2568359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.4716796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.7607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.5849609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.2138671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.18359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.4873046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.533203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.806640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.931640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.494140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 203.552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.283203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.2333984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.998046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.0595703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.24609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.46875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.9296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.7216796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.62109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.51953125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.7431640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.833984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.2705078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.8701171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.21875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.2109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.4365234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.0498046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.9736328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.1123046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.572265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.103515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.0615234375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 305.646484375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.53125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.986328125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.78515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.78515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1103515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1103515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1103515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5576171875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.7763671875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.603515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.2890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.96875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.0400390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.7392578125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.2216796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.2216796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.37890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.033203125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.330078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.630859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3056640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3056640625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6796875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0048828125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.98046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6552734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3544921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.28125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.6064453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.7080078125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.68359375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9560546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.134765625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.7607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.7607421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.232421875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3779296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3662109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.5498046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.9677734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.21875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.83984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.3984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.39453125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.470703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.119140625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.044921875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.037109375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8935546875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.7177734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.58984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.3984375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.73046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.74609375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.98046875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain_BRIL": { + "name": "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.8095703125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain_copy": { + "name": "HLT_ZeroBias_FirstBXAfterTrain_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.5087890625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.6015625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.6875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.15625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.97265625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.05859375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.5390625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.53125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.53515625, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.52734375, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.53125, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2939781, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 69.3095703125, + "entries": 2939781, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 76.3955078125, + "entries": 2939781, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 7841.5810546875, + "entries": 2939781, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 18660.6923828125, + "entries": 182794.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 15304.875, + "entries": 2939781, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 15231.7236328125, + "entries": 2939781, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 122491.78515625, + "entries": 14128842.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 16810.8525390625, + "entries": 2939781, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 16877.6416015625, + "entries": 2939781, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 86455.6865234375, + "entries": 604400.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 61954.5947265625, + "entries": 352183.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 3800.25, + "entries": 102039.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 70520.1787109375, + "entries": 2919289.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 539273.0078125, + "entries": 12016594.999999998, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 53278.3876953125, + "entries": 2939781, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 71809.8671875, + "entries": 934100.0000000001, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 55164.4306640625, + "entries": 2939781, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 19526.6064453125, + "entries": 577958.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 287747.7490234375, + "entries": 3800265.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 48939.4228515625, + "entries": 700365.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 14991.22265625, + "entries": 1448016.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 85969.1064453125, + "entries": 2939781, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 15262.6416015625, + "entries": 2939781, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 15758.265625, + "entries": 2939781, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 9192.26171875, + "entries": 2939781, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 9339.03515625, + "entries": 2939781, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 9705.8671875, + "entries": 2939781, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 9847.2587890625, + "entries": 2939781, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 9485.2099609375, + "entries": 2939781, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 87751.046875, + "entries": 16803502.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 10027.4912109375, + "entries": 2939781, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 9184.1455078125, + "entries": 2939781, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 9996.88671875, + "entries": 2939781, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 9744.1640625, + "entries": 2939781, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 1011.84375, + "entries": 2939781, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1837.9599609375, + "entries": 2939781, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1280.7255859375, + "entries": 2939781, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 17576.6298828125, + "entries": 470029.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 131496.783203125, + "entries": 2755419.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 15402.517578125, + "entries": 2939781, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 99872.841796875, + "entries": 9687815.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 16239.431640625, + "entries": 8815329.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 30197.21875, + "entries": 2939781, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 65645.2822265625, + "entries": 1674091.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 38874.1201171875, + "entries": 2939781, + "subs": [ + "L1_AlwaysTrue", + "L1_BPTX_LUT1_AND", + "L1_BPTX_LUT1_B1", + "L1_BPTX_LUT1_B2", + "L1_BPTX_LUT1_OR", + "L1_BPTX_LUT2_AND", + "L1_BPTX_LUT2_B1NotB2", + "L1_BPTX_LUT2_B2NotB1", + "L1_BPTX_LUT2_NotOR", + "L1_BPTX_TRIG2_AND", + "L1_BPTX_TRIG2_B1NotB2", + "L1_BPTX_TRIG2_B2NotB1", + "L1_BPTX_TRIG2_NotOR", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BRIL_TRIG3_AND", + "L1_BRIL_TRIG3_delayedAND", + "L1_BRIL_TRIG3_ref", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_ETT40_BptxAND" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 4490.890625, + "entries": 2939781, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 62.7041015625, + "entries": 2939781, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 64.98046875, + "entries": 2939781, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 48215.177734375, + "entries": 2939781, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "HLT_ZeroBias_FirstBXAfterTrain_copy", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 64.98046875, + "entries": 2939781, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 25, + "allsize": 0.166015625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.166015625, + "entries": 25, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.166015625, + "entries": 25, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 887, + "allsize": 1.9814453125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2294921875, + "entries": 887, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.1318359375, + "entries": 887, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2041015625, + "entries": 887, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.19921875, + "entries": 887, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.216796875, + "entries": 887, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2294921875, + "entries": 887, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.1318359375, + "entries": 887, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2041015625, + "entries": 887, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.19921875, + "entries": 887, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.216796875, + "entries": 887, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30531/SinglePhoton_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30531/SinglePhoton_doc.html new file mode 100644 index 000000000..e44f4b50c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30531/SinglePhoton_doc.html @@ -0,0 +1,1643 @@ + + + + Documentation for 28182352-6457-734D-995A-301A869F95B0.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30531/SinglePhoton_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30531/SinglePhoton_doc.json new file mode 100644 index 000000000..61f262e12 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30531/SinglePhoton_doc.json @@ -0,0 +1,13984 @@ +{ + "filename": "28182352-6457-734D-995A-301A869F95B0.root", + "filesize": 30608.3427734375, + "trees": { + "Events": { + "entries": 28234, + "allsize": 26992.884765625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.9853515625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.1572265625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 76.7490234375, + "entries": 28234, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 3.8603515625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 9.40234375, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 10.984375, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 9.7265625, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 9.71875, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 9.3984375, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 8.8046875, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 8.36328125, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 10.9921875, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 6.8203125, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 12.8046875, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 9.9375, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 9.5703125, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 9.73828125, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 9.46484375, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 10.3046875, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 9.796875, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 12.30859375, + "entries": 2225.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 5.5859375, + "entries": 2225.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 6.1953125, + "entries": 2225.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 4.94140625, + "entries": 2225.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 6.51953125, + "entries": 2225.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 5.94140625, + "entries": 2225.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 4.90625, + "entries": 2225.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 6.1640625, + "entries": 2225.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 6.0703125, + "entries": 2225.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 6.0625, + "entries": 2225.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 53.6767578125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 50.515625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 48.1552734375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 54.03125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 51.2138671875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 46.900390625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 14.2919921875, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 98.4091796875, + "entries": 102898.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 248.5068359375, + "entries": 102898.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 162.3779296875, + "entries": 102898.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 249.8466796875, + "entries": 102898.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 176.8037109375, + "entries": 102898.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 64.3583984375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 99.333984375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 64.9423828125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 99.1640625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 8.8544921875, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 51.31640625, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 51.3125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 15.70703125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 15.71484375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 58.9140625, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 40.12890625, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 38.7734375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 35.5703125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 35.73046875, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 62.23828125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 42.60546875, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 62.5703125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 43.17578125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 62.47265625, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 59.55859375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 46.0078125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 65.98046875, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 46.98828125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 59.18359375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 50.4375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 51.7734375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 60.41796875, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 85.2734375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 79.5234375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 68.40234375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 70.69921875, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 90.2109375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 86.55859375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 65.62109375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 91.7734375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 50.02734375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 51.22265625, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 52.234375, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 57.08203125, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 52.25, + "entries": 21426.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 19.65234375, + "entries": 21426.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 19.984375, + "entries": 21426.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 23.82421875, + "entries": 21426.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 19.62890625, + "entries": 21426.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 22.234375, + "entries": 21426.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 20.78125, + "entries": 21426.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 50.37890625, + "entries": 21426.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 42.6484375, + "entries": 21426.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 15.19140625, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 15.41015625, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 17.3046875, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 24.29296875, + "entries": 21426.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 17.47265625, + "entries": 21426.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 15.2421875, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 15.4765625, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 16.4296875, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 15.4609375, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 15.71875, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 16.6171875, + "entries": 21426.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 15.33203125, + "entries": 21426.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 8.1337890625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 29.96875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 54.48046875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 61.00390625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 54.3984375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 59.16015625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 55.6328125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 54.2109375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 55.1875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 59.9296875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 59.56640625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 53.24609375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 59.890625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 56.66015625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 59.71875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 52.8828125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 59.796875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 55.88671875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 59.5, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 49.50390625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 52.890625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 61.4296875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 59.91015625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 59.77734375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 67.92578125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 54.41015625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 56.44921875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 45.55078125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 33.8515625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 53.0234375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 60.4140625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 57.6875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 57.98828125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 62.29296875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 60.28125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 59.7734375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 49.15234375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 61.9140625, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 59.58203125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 59.75, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 56.08203125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 67.23828125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 51.79296875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 36.77734375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 55.64453125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 55.4921875, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 55.2578125, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 55.3984375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 42.27734375, + "entries": 22672.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 16.82421875, + "entries": 22672.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 20.55859375, + "entries": 22672.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 20.61328125, + "entries": 22672.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 19.6875, + "entries": 22672.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 17.41796875, + "entries": 22672.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 30.046875, + "entries": 22672.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 1.94921875, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 3.86328125, + "entries": 361.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 3.546875, + "entries": 361.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 3.53515625, + "entries": 361.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 3.375, + "entries": 361.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 3.79296875, + "entries": 361.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 2.53125, + "entries": 361.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 7.4912109375, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 43.1171875, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 42.98828125, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 44.70703125, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 37.125, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 31.50390625, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 44.7109375, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 37.38671875, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 34.91796875, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 25.42578125, + "entries": 13583.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 14.8984375, + "entries": 13583.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 16.15625, + "entries": 13583.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 15.1171875, + "entries": 13583.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 13.69921875, + "entries": 13583.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 11.203125, + "entries": 13583.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 13.25390625, + "entries": 13583.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 14.556640625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 109.294921875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 218.4736328125, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 213.9541015625, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 193.7529296875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 201.1123046875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 268.9384765625, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 218.6826171875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 251.4052734375, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 234.3046875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 52.94140625, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 176.544921875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 172.9697265625, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 321.8505859375, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 47.8681640625, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 47.9775390625, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 254.298828125, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 39.478515625, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 206.0419921875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 189.34375, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 177.2548828125, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 315.4755859375, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 256.3046875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 228.384765625, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 208.1982421875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 188.3173828125, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 198.599609375, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 173.1982421875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 195.826171875, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 170.8271484375, + "entries": 135364.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 46.001953125, + "entries": 135364.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 29.763671875, + "entries": 135364.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 29.4130859375, + "entries": 135364.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 34.4892578125, + "entries": 135364.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 42.9345703125, + "entries": 135364.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 35.392578125, + "entries": 135364.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 29.572265625, + "entries": 135364.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 44.21875, + "entries": 135364.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 35.87109375, + "entries": 135364.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 54.427734375, + "entries": 135364.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 106.7578125, + "entries": 135364.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 27.025390625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 26.0849609375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 26.4609375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 26.7412109375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 5.890625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 2.8154296875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 6.0615234375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 5.8544921875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 5.9404296875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 29.5693359375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 29.962890625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 8.0234375, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 71.08203125, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 21.01171875, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 48.3671875, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 48.68359375, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 34.83203125, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 49.92578125, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 34.2890625, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 48.05078125, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 67.7890625, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 37.0546875, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 52.05859375, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 32.58984375, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 48.71484375, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 61.0625, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 52.81640625, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 51.80859375, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 70.9765625, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 64.015625, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 45.90234375, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 40.6875, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 37.6953125, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 65.078125, + "entries": 16105.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 16.578125, + "entries": 16105.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 15.578125, + "entries": 16105.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 16.515625, + "entries": 16105.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 13.6875, + "entries": 16105.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 15.69921875, + "entries": 16105.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 55.951171875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 55.708984375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 38.9560546875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 47.7646484375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 38.9873046875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 65.0087890625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 98.01953125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 53.908203125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 46.6748046875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 46.462890625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 1.0244140625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1.65625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1.6953125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1.6953125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 1.6796875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 1.703125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1.6640625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 1.671875, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 6.0537109375, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 25.8359375, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 17.9765625, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 26.03125, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 26.25, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 18.42578125, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 26.8125, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 24.94921875, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 19.47265625, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 21.23828125, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 9.80859375, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 33.34375, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 31.7421875, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 34.421875, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 33.3125, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 35.0546875, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 26.5546875, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 34.66796875, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 19.328125, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 24.28515625, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 24.27734375, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 14.0078125, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 18.98046875, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 9.3125, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 19.23046875, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 20.984375, + "entries": 7529.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 9.87890625, + "entries": 7529.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 11.7421875, + "entries": 7529.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 11.33984375, + "entries": 7529.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 12.83203125, + "entries": 7529.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 9.87890625, + "entries": 7529.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 8.765625, + "entries": 7529.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 8.92578125, + "entries": 7529.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 9.23828125, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 8.72265625, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 8.26171875, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 9.1875, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 9.1171875, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 9.234375, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 9.0703125, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 11.91796875, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 9.109375, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 9.0, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 8.80078125, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 9.359375, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 8.6484375, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 7.85546875, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 7.79296875, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 9.15625, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 8.95703125, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 9.15625, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 8.75, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 8.81640625, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 9.078125, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 9.22265625, + "entries": 7529.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 8.4150390625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 82.15234375, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 82.25390625, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 20.765625, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 20.72265625, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 55.625, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 76.15234375, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 114.98828125, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 74.375, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 67.3828125, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 82.5234375, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 83.58984375, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 156.734375, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 140.5078125, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 114.234375, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 164.04296875, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 82.2890625, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 86.8203125, + "entries": 40885.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 20.70703125, + "entries": 40885.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 29.7421875, + "entries": 40885.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 29.76953125, + "entries": 40885.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 29.52734375, + "entries": 40885.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 33.00390625, + "entries": 40885.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 20.69921875, + "entries": 40885.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 56.6484375, + "entries": 40885.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 21.98046875, + "entries": 40885.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 22.25390625, + "entries": 40885.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 21.9375, + "entries": 40885.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 21.69921875, + "entries": 40885.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 21.98828125, + "entries": 40885.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 22.28125, + "entries": 40885.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 19.50390625, + "entries": 40885.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 1.01953125, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1.6484375, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1.6484375, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 1.671875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 1.6953125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1.765625, + "entries": 0.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1.7734375, + "entries": 0.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 1.6953125, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 1.6875, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 64.740234375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 53.7041015625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 53.6943359375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 53.6923828125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 53.8271484375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 53.7158203125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 53.9951171875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 98.7001953125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 51.453125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 51.443359375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 51.0859375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 50.951171875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 51.0625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 51.158203125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 50.5390625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 54.046875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 50.7412109375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 46.490234375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 53.7470703125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 51.33203125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 50.6591796875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 94.3671875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 94.10546875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 90.640625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 97.7080078125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 95.6865234375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 3.259765625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 278.6943359375, + "entries": 167148.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 274.2333984375, + "entries": 167148.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 322.12890625, + "entries": 167148.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 99.6005859375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 92.9814453125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 100.3671875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 99.83203125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 13.0390625, + "entries": 28234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 18.7841796875, + "entries": 28234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 14.7255859375, + "entries": 28234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 1.029296875, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1.703125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1.671875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 1.7109375, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 9.0986328125, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 66.66796875, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 67.4375, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 95.421875, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 83.875, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 60.859375, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 59.5078125, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 94.16015625, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 77.8828125, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 49.92578125, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 75.7890625, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 70.0546875, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 65.41796875, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 61.6640625, + "entries": 35679.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 6.033203125, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 22.75, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 26.7890625, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 29.109375, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 28.21484375, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 23.7421875, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 23.76171875, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 22.94140625, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 21.24609375, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 17.453125, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 28.125, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 16.5703125, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 36.11328125, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 24.171875, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 23.28125, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 24.02734375, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 18.6796875, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 23.47265625, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 21.17578125, + "entries": 7693.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 11.02734375, + "entries": 7693.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 12.8515625, + "entries": 7693.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 12.82421875, + "entries": 7693.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 9.3125, + "entries": 7693.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 9.18359375, + "entries": 7693.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 10.3359375, + "entries": 7693.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 13.46875, + "entries": 7693.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 13.1328125, + "entries": 7693.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 10.6171875, + "entries": 7693.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 53.9716796875, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 52.845703125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 49.8564453125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 16.216796875, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 291.57421875, + "entries": 140320.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 254.9287109375, + "entries": 140320.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 250.7373046875, + "entries": 140320.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 177.013671875, + "entries": 140320.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 23.796875, + "entries": 140320.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 210.876953125, + "entries": 140320.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 48.52734375, + "entries": 140320.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 44.7509765625, + "entries": 140320.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 24.693359375, + "entries": 140320.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 69.23828125, + "entries": 140320.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 1.119140625, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 157.00390625, + "entries": 84666.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 38.7939453125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 33.619140625, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 29.505859375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 77.240234375, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 32.0283203125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 46.033203125, + "entries": 28234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 17.3916015625, + "entries": 28234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 17.0712890625, + "entries": 28234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 9.4033203125, + "entries": 28234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 58.00390625, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 55.671875, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 57.83203125, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 56.27734375, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 36.06640625, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 24.10546875, + "entries": 22451.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 13.80859375, + "entries": 21426.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 35.45703125, + "entries": 135364.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 9.01171875, + "entries": 7529.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 16.0625, + "entries": 40885.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 8.94921875, + "entries": 7693.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 51.05859375, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 67.7421875, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 55.23828125, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 41.6640625, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 67.24609375, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 57.3125, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 62.3515625, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 61.83203125, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 70.0390625, + "entries": 22451.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 19.19140625, + "entries": 22451.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8896484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8701171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.0673828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.1474609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.8427734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.8193359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.1474609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.0263671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.1513671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.8388671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.0146484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3876953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3681640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3876953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3720703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3720703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3603515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3525390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.353515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.326171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9814453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0478515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1455078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.9833984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3408203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.900390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.47265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.41015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.154296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3427734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.197265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1044921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.099609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9033203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.314453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.26171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4423828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.197265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.134765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.037109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.080078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.087890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.298828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.080078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.365234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.3623046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9638671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.951171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.814453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.90234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.728515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.615234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.548828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.443359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9384765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8701171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8701171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8701171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8701171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8701171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8818359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9013671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8701171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8935546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3427734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3662109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3310546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3349609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3310546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3232421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.4267578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3876953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.396484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.123046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.537109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.8798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.7822265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.876953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6826171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6708984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.615234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6201171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6123046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.537109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.537109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.51953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.564453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.462890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4423828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.462890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8896484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0419921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8896484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3818359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.6494140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.6494140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.6455078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.5546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.55078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.9599609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.8310546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.3193359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.0966796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3759765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9638671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.5224609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.0498046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9130859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0380859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9560546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2646484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.2529296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.4169921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.7060546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.9873046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.3857421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.6474609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.1943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.5380859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.052734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.5078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.279296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.51171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.333984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.55078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.435546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.59765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.564453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.693359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.67578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.802734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.72265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.919921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.77734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.060546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.82421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.181640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.0712890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3876953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3681640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3603515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3291015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3095703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.2626953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.01171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9755859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8896484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8896484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.7666015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6728515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6123046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6103515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5419921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5478515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4873046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4853515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4443359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4423828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3544921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3603515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.927734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.955078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9033203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9716796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3623046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.3076171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.345703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.3837890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 3.2119140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 5.0302734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.8232421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 4.6396484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0107421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8955078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9775390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.939453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.9775390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.5439453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 2.0234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.5791015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.6484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.4892578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.9873046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.0400390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 2.1318359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.9462890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.9326171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.9140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.0205078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.9423828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.08984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.98828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.01171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.9775390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.0048828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.5791015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.8798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.96875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.0068359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.5732421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 2.052734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.6083984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.5185546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.0166015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.0693359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 2.1611328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.9755859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.9619140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.951171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.0498046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.9716796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.119140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.041015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.9921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.9921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.0068359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.0341796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.6083984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.7197265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8837890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9619140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.5546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9326171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.927734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1748046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9423828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5146484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.818359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.60546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0107421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0068359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9775390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0498046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.947265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9970703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9384765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9384765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0068359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.982421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.603515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.591796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9775390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.052734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.498046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.4794921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.345703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.8681640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.4794921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.751953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.474609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1533203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4150390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4150390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.345703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.345703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.6826171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0458984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.8193359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.5224609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.869140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8427734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5927734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8818359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8974609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9169921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9638671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1591796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.6875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.6875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.8984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.21875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.99609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2333984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.029296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1552734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0986328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.986328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0986328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1298828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0986328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.173828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1298828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9736328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9736328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9658203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8896484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8896484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9833984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.009765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9833984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9755859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9521484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.05859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.05078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.052734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.01171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3369140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2626953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9384765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.1796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.11328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.888671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9560546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8935546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9599609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9130859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.998046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0048828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0263671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.96875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9814453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.228515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9619140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.162109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9033203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9130859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.873046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1025390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.044921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.03515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2392578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2197265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.224609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.189453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0517578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.080078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.080078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0400390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.103515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.111328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0908203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0244140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.458984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.162109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.244140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.439453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9580078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9580078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9150390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9931640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2939453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4970703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.7939453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9892578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.5869140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8837890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.974609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.271484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.431640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.705078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.841796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.908203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.916015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9208984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0068359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2216796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.6630859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.8505859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.1669921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.94140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9462890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9423828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1181640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9814453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0849609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.021484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0537109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.3671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.3115234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8916015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9111328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9033203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9580078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9892578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0634765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1611328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5009765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1845703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5009765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9970703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.955078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1240234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0771484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0537109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0498046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0888671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1005859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.96484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.95703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.033203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0048828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.431640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.982421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1982421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.212890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9580078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0458984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.6708984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5888671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.46875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0966796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2255859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2255859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1162109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9365234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.935546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.466796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.076171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5986328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0869140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.439453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.435546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0498046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0380859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3623046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4560546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.73828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3154296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1201171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.1357421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.9326171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.0849609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.9990234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.0302734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.5146484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.4013671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.1318359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.8515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.68359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0205078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.025390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.044921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.037109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.94140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.96484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1298828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3330078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3857421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.505859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4208984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.208984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4208984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0576171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.27734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.26953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2236328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1767578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.15234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1669921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1435546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2021484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.033203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9775390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9775390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4697265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4658203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0048828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.91796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.927734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.126953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0556640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.06640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.16796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.982421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.966796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.990234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.193359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.353515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.982421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.197265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.419921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.56640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.4296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.970703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.083984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.142578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.861328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.978515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.986328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.7490234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.2998046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 4.4765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.5693359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.8349609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.4990234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.4716796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.6083984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.5732421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.73828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.19140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.9296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4267578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.7470703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1318359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.6640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9423828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9111328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0751953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4658203125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4541015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0263671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1240234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1005859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0654296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0673828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.013671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.001953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.001953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.001953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.017578125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.166015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.115234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0654296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.150390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1044921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9775390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.041015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0712890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.044921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0458984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.06640625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0712890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9970703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0068359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.7412109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.6630859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.08984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.099609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.837890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.751953125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9580078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0361328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0458984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0009765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4150390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4755859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0009765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9716796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1240234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9873046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.6708984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9482421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5224609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.1123046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.0966796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1669921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.16015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0498046875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.982421875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.095703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.095703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.150390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.064453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.943359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9580078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.95703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.99609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9716796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8603515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.865234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9912109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.00390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.00390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.00390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.2685546875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.0576171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5166015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5068359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.005859375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.595703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.5224609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.021484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.8515625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 3.994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3740234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.076171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.1875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9111328125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8916015625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0341796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0224609375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.904296875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9189453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9189453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8994140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8896484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.93359375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9384765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8798828125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9287109375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.021484375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0458984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0458984375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.962890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9677734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9091796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8740234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8701171875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.02734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.95703125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.87890625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.966796875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.919921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.900390625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.884765625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.5888671875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2802734375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.078125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.90234375, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.89453125, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9140625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9921875, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.97265625, + "entries": 28234, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.9853515625, + "entries": 28234, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.1572265625, + "entries": 28234, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 76.7490234375, + "entries": 28234, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 224.3837890625, + "entries": 2225.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 152.34765625, + "entries": 28234, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 152.1455078125, + "entries": 28234, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 950.236328125, + "entries": 102898.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 163.6923828125, + "entries": 28234, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 164.1064453125, + "entries": 28234, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 2399.2021484375, + "entries": 21426.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 2793.9228515625, + "entries": 22672.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 22.59375, + "entries": 361.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 433.7021484375, + "entries": 13583.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 6070.4775390625, + "entries": 135364.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 192.4072265625, + "entries": 28234, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 1170.57421875, + "entries": 16105.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 547.4423828125, + "entries": 28234, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 18.9052734375, + "entries": 0.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 883.1865234375, + "entries": 7529.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 1901.3798828125, + "entries": 40885.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 14.60546875, + "entries": 0.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 843.7626953125, + "entries": 28234, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 151.2783203125, + "entries": 28234, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 155.73828125, + "entries": 28234, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 94.3671875, + "entries": 28234, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 94.10546875, + "entries": 28234, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 90.640625, + "entries": 28234, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 97.7080078125, + "entries": 28234, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 95.6865234375, + "entries": 28234, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 878.31640625, + "entries": 167148.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 99.6005859375, + "entries": 28234, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 92.9814453125, + "entries": 28234, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 100.3671875, + "entries": 28234, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 99.83203125, + "entries": 28234, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 13.0390625, + "entries": 28234, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 18.7841796875, + "entries": 28234, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 14.7255859375, + "entries": 28234, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 937.7626953125, + "entries": 35679.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 549.361328125, + "entries": 7693.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 156.673828125, + "entries": 28234, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 1412.3544921875, + "entries": 140320.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 158.123046875, + "entries": 84666.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 291.68359375, + "entries": 28234, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 851.0361328125, + "entries": 22451.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 604.4775390625, + "entries": 28234, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT35_BptxAND", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 63.55859375, + "entries": 28234, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 0.8798828125, + "entries": 28234, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 0.9140625, + "entries": 28234, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 690.0087890625, + "entries": 28234, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 0.9140625, + "entries": 28234, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 1, + "allsize": 0.072265625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.072265625, + "entries": 1, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.072265625, + "entries": 1, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 41, + "allsize": 0.8916015625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.1591796875, + "entries": 41, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.2255859375, + "entries": 41, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.1728515625, + "entries": 41, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.16796875, + "entries": 41, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.166015625, + "entries": 41, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.1591796875, + "entries": 41, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.2255859375, + "entries": 41, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.1728515625, + "entries": 41, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.16796875, + "entries": 41, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.166015625, + "entries": 41, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30532/Tau_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30532/Tau_doc.html new file mode 100644 index 000000000..4d87c27bf --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30532/Tau_doc.html @@ -0,0 +1,1666 @@ + + + + Documentation for 06D59B66-2858-3E42-B867-8FDE59F4D206.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu14er_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon22_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity110ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity135ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity160ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity60ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_PixelTracks_Multiplicity85ForEndOfFillBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrain_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDSBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrain_BRILBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_B2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT1_ORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_LUT2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_ANDBool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B1NotB2Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_B2NotB1Bool_tTrigger/flag bit (process: NANO)
L1_BPTX_TRIG2_NotORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG3_refBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT25_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT35_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC32_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC36_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30532/Tau_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30532/Tau_doc.json new file mode 100644 index 000000000..7c221c377 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30532/Tau_doc.json @@ -0,0 +1,14214 @@ +{ + "filename": "06D59B66-2858-3E42-B867-8FDE59F4D206.root", + "filesize": 2386078.6259765625, + "trees": { + "Events": { + "entries": 2433947, + "allsize": 2380003.154296875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 65.9423828125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 73.1611328125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 6534.5146484375, + "entries": 2433947, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 501.5205078125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 1947.1669921875, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 2520.18359375, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 2101.0185546875, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 2105.2685546875, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 2054.599609375, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 1955.7236328125, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1787.6474609375, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 2527.33203125, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1477.6220703125, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 3124.5732421875, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 2121.1943359375, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 1996.7763671875, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 2079.2333984375, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1992.3037109375, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 2249.435546875, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 1974.119140625, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 2697.689453125, + "entries": 695950.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 972.6943359375, + "entries": 695950.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 1153.857421875, + "entries": 695950.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 820.3974609375, + "entries": 695950.9999999999, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 1166.462890625, + "entries": 695950.9999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 1027.408203125, + "entries": 695950.9999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 833.5478515625, + "entries": 695950.9999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 1133.9228515625, + "entries": 695950.9999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 1103.1845703125, + "entries": 695950.9999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 1085.4423828125, + "entries": 695950.9999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4601.6689453125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 4328.5703125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3846.1435546875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4615.109375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 4316.7451171875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3759.474609375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1266.0654296875, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 10453.4775390625, + "entries": 11861969.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 27410.4443359375, + "entries": 11861969.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 17811.5693359375, + "entries": 11861969.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 27657.5458984375, + "entries": 11861969.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 19290.1279296875, + "entries": 11861969.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 5483.6044921875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 8491.958984375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 5554.0205078125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 8488.9375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 669.7451171875, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3655.236328125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 3650.32421875, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1195.525390625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1195.25390625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 4233.3173828125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2364.630859375, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2263.7490234375, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2041.126953125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 2035.380859375, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4443.240234375, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 3072.5712890625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4491.4892578125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 3074.55078125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 5122.54296875, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 4348.08984375, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 3280.20703125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 4725.998046875, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 3351.357421875, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 4251.5888671875, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 3543.6689453125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 3654.53515625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 4266.2763671875, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 6156.7958984375, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 5636.5224609375, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 4830.3642578125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 5005.7255859375, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 6265.2783203125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 5856.9931640625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 4708.998046875, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 6441.3056640625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3670.4150390625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 3733.0009765625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3773.67578125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 4107.3515625, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 3658.8408203125, + "entries": 1493393.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1474.4853515625, + "entries": 1493393.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1447.7724609375, + "entries": 1493393.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1824.5205078125, + "entries": 1493393.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1475.1953125, + "entries": 1493393.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1636.31640625, + "entries": 1493393.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1533.197265625, + "entries": 1493393.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 3479.73828125, + "entries": 1493393.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 3121.28515625, + "entries": 1493393.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 1154.6552734375, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 1187.36328125, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1330.3310546875, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1718.4306640625, + "entries": 1493393.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1331.1279296875, + "entries": 1493393.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 1190.896484375, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 1204.072265625, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 1238.6845703125, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 1197.765625, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 1216.66015625, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1261.3857421875, + "entries": 1493393.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1099.8779296875, + "entries": 1493393.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 632.6298828125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 2035.5439453125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 3590.498046875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 3900.4375, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 3564.9765625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 3782.9296875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 3711.087890625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 3505.53125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 3330.4482421875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 3640.2451171875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 3550.5283203125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 3246.6259765625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 3639.07421875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 3378.95703125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 3528.9091796875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 3222.0634765625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 3629.48046875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 3329.51171875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 3789.712890625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 3276.6875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 3457.548828125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 3919.3037109375, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 3813.7998046875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 3801.6318359375, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 4373.91796875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 3531.1767578125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 3277.544921875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2899.7705078125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1833.9970703125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 3481.134765625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 3888.580078125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 3731.041015625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 3751.494140625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 3957.1728515625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 3884.0087890625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 3830.0712890625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 3257.29296875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 3941.6591796875, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 3791.6630859375, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 3799.5849609375, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 3631.3642578125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 4363.140625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 3279.3193359375, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 2473.005859375, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 3598.1806640625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 3592.3798828125, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 3592.2822265625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 3596.4072265625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 2320.8603515625, + "entries": 1388253.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1119.154296875, + "entries": 1388253.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1456.1982421875, + "entries": 1388253.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1454.2177734375, + "entries": 1388253.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 1345.1240234375, + "entries": 1388253.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 1305.9443359375, + "entries": 1388253.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1991.384765625, + "entries": 1388253.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 138.76171875, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 295.8017578125, + "entries": 25980.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 272.6982421875, + "entries": 25980.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 272.4677734375, + "entries": 25980.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 262.009765625, + "entries": 25980.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 288.5390625, + "entries": 25980.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 196.4599609375, + "entries": 25980.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 901.9248046875, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 8456.6083984375, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 8375.8642578125, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 8823.3701171875, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 6900.5048828125, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 5694.9384765625, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 8858.8818359375, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 7275.7001953125, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 6477.2119140625, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4379.9111328125, + "entries": 3182437.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 2172.1494140625, + "entries": 3182437.0000000005, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 2368.7470703125, + "entries": 3182437.0000000005, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 2216.1123046875, + "entries": 3182437.0000000005, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1851.91015625, + "entries": 3182437.0000000005, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1351.6435546875, + "entries": 3182437.0000000005, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1805.021484375, + "entries": 3182437.0000000005, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1210.244140625, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 10151.9716796875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 20915.8076171875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 20385.8662109375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 18306.6787109375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 19192.5537109375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 25558.6123046875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 20787.6279296875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 23461.7998046875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 22776.2373046875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 4650.48046875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 16668.9130859375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 15605.9248046875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 30559.673828125, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4681.8984375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4685.93359375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 23591.916015625, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 3820.42578125, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 19478.9990234375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 17713.6630859375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 17219.0146484375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 29938.138671875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 23692.982421875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 21643.2060546875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 18570.4287109375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 18865.5693359375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 18998.9169921875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 15869.8544921875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 18947.6201171875, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 15819.5224609375, + "entries": 13039888.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3859.33984375, + "entries": 13039888.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2504.4375, + "entries": 13039888.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2519.375, + "entries": 13039888.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 3070.58984375, + "entries": 13039888.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3284.8203125, + "entries": 13039888.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 3221.2265625, + "entries": 13039888.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2539.86328125, + "entries": 13039888.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3753.65625, + "entries": 13039888.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 3213.48828125, + "entries": 13039888.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 5212.65234375, + "entries": 13039888.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 9786.0859375, + "entries": 13039888.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1615.056640625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1429.0732421875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1447.38671875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1460.0771484375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 654.72265625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 367.0849609375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 673.4873046875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 650.0107421875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 659.7802734375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 1863.2255859375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1887.673828125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 625.21484375, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 5419.115234375, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1557.0400390625, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3717.466796875, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3733.3818359375, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2675.220703125, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3821.572265625, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2619.7509765625, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3674.4150390625, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 5177.728515625, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2839.3720703125, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 3992.3349609375, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2523.8779296875, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 3679.42578125, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4478.08203125, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3766.59375, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 3969.6240234375, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 5377.025390625, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 4865.28125, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 3511.615234375, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 3146.732421875, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2887.9384765625, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 4969.83984375, + "entries": 1215341.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1305.037109375, + "entries": 1215341.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1205.513671875, + "entries": 1215341.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1304.2978515625, + "entries": 1215341.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1075.703125, + "entries": 1215341.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1201.72265625, + "entries": 1215341.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4777.033203125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4774.912109375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 3255.2880859375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 4065.9912109375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 3258.1162109375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 5545.9541015625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 8460.13671875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 4578.447265625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3821.1865234375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3791.833984375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 264.8876953125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1350.126953125, + "entries": 383564.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1435.7646484375, + "entries": 383564.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1435.6865234375, + "entries": 383564.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 482.8603515625, + "entries": 383564.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 483.98046875, + "entries": 383564.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1261.6982421875, + "entries": 383564.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 540.3515625, + "entries": 383564.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 547.1044921875, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2730.880859375, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1876.8642578125, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 2740.25390625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2763.0205078125, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1920.8359375, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 2842.916015625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2632.9677734375, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1988.9501953125, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2224.2890625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 994.1044921875, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3436.5458984375, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3088.4326171875, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 3565.9306640625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3347.4697265625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 3662.7119140625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 2822.720703125, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 3731.3759765625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 2036.265625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 2540.888671875, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 2574.5234375, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 1456.919921875, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 1935.5654296875, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 952.8486328125, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 2130.8857421875, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2261.6962890625, + "entries": 827081.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 993.1884765625, + "entries": 827081.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1188.5595703125, + "entries": 827081.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1155.375, + "entries": 827081.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1323.1767578125, + "entries": 827081.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 994.37890625, + "entries": 827081.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 885.505859375, + "entries": 827081.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 876.9443359375, + "entries": 827081.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 923.3662109375, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 881.1494140625, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 840.4384765625, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 926.5341796875, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 923.4951171875, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 927.3076171875, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 910.96875, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1160.0009765625, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 922.509765625, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 910.2529296875, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 886.0830078125, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 993.6328125, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 890.5947265625, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 818.54296875, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 775.7236328125, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 984.482421875, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 935.2509765625, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 924.5947265625, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 885.12890625, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 889.197265625, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 937.326171875, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 929.7939453125, + "entries": 827081.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 773.1962890625, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 4564.2421875, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 4566.115234375, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1411.2578125, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1408.814453125, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 3032.509765625, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 4295.736328125, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 6352.1796875, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 4338.80859375, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 3889.4111328125, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 4254.041015625, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 4466.6455078125, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 8740.4560546875, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 8083.4208984375, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 6328.6640625, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 8733.8271484375, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 4844.7685546875, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 4982.287109375, + "entries": 2116016.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1406.6552734375, + "entries": 2116016.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 1677.9267578125, + "entries": 2116016.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 1684.4375, + "entries": 2116016.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1890.91015625, + "entries": 2116016.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2158.1162109375, + "entries": 2116016.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1406.837890625, + "entries": 2116016.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 3473.666015625, + "entries": 2116016.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1548.3173828125, + "entries": 2116016.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1523.076171875, + "entries": 2116016.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1499.857421875, + "entries": 2116016.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1382.3505859375, + "entries": 2116016.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1402.4052734375, + "entries": 2116016.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1547.357421875, + "entries": 2116016.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1250.9345703125, + "entries": 2116016.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 385.7734375, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2981.6826171875, + "entries": 1070501.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 3315.5224609375, + "entries": 1070501.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 737.50390625, + "entries": 1070501.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 739.2900390625, + "entries": 1070501.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 922.203125, + "entries": 1070501.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 936.4638671875, + "entries": 1070501.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 989.0087890625, + "entries": 1070501.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 738.892578125, + "entries": 1070501.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 5528.662109375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4585.8681640625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4585.2490234375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4585.0595703125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4585.9169921875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4584.3798828125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4593.2607421875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 8484.5478515625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 4357.84765625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 4357.228515625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 4359.55078125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 4355.814453125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 4356.546875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 4354.451171875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4172.515625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4606.37890625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 4317.9912109375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3811.224609375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4581.0361328125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 4366.859375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4167.5419921875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 7538.11328125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 7639.0234375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 8072.28125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 8138.6884765625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 7751.9990234375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 280.912109375, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 24024.2451171875, + "entries": 14379236.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 23561.0107421875, + "entries": 14379236.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 27620.49609375, + "entries": 14379236.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 8435.6787109375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 8469.1181640625, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 8481.984375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 8491.89453125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 954.53125, + "entries": 2433947, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1531.8740234375, + "entries": 2433947, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1137.0810546875, + "entries": 2433947, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 386.392578125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 2972.25, + "entries": 1070501.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2883.5625, + "entries": 1070501.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 989.6826171875, + "entries": 1070501.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 575.2626953125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 3442.392578125, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 3472.021484375, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 5035.33203125, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 4484.9619140625, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 3252.3720703125, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 3046.0400390625, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 4971.26953125, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 4248.9912109375, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 2764.087890625, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 4071.0947265625, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 3640.6923828125, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 3290.2001953125, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 3044.8994140625, + "entries": 1807987.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 717.283203125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 4918.40234375, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 5997.6298828125, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 6714.46875, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 6463.7939453125, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 5233.75390625, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 5238.4609375, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 5147.9755859375, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 4879.626953125, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 3971.20703125, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 6430.6181640625, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 3805.947265625, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 8859.46875, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 5310.3359375, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 4355.1279296875, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 5328.5361328125, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 2861.83984375, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 5165.953125, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 4615.65234375, + "entries": 2183800.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 1851.23046875, + "entries": 2183800.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 2355.8583984375, + "entries": 2183800.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2168.8984375, + "entries": 2183800.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 1349.1591796875, + "entries": 2183800.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 1362.326171875, + "entries": 2183800.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 1619.2294921875, + "entries": 2183800.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 2210.662109375, + "entries": 2183800.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 2274.453125, + "entries": 2183800.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 1484.8310546875, + "entries": 2183800.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 4576.8427734375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 4390.689453125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 4002.5439453125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1345.013671875, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 36324.8046875, + "entries": 17992296.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 34349.9384765625, + "entries": 17992296.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 33558.8056640625, + "entries": 17992296.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 20946.822265625, + "entries": 17992296.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 2530.8125, + "entries": 17992296.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 25041.513671875, + "entries": 17992296.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 5434.0390625, + "entries": 17992296.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 5232.6513671875, + "entries": 17992296.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 2749.916015625, + "entries": 17992296.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 7083.10546875, + "entries": 17992296.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 68.224609375, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 13476.5078125, + "entries": 7300485.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 3308.4267578125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2841.611328125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2494.990234375, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 6615.919921875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2761.3017578125, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3722.138671875, + "entries": 2433947, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1578.6728515625, + "entries": 2433947, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1551.1611328125, + "entries": 2433947, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 743.7470703125, + "entries": 2433947, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 4594.0634765625, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 4451.15234375, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 4586.109375, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 4461.2958984375, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2867.7255859375, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1932.5771484375, + "entries": 1764978.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1074.83203125, + "entries": 1493393.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3022.359375, + "entries": 13039888.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 912.3671875, + "entries": 827081.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1216.068359375, + "entries": 2116016.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1256.3974609375, + "entries": 2183800.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 4077.0869140625, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 5385.25390625, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 4385.7001953125, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 3297.8916015625, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 5362.62890625, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 4544.6513671875, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4934.974609375, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4916.572265625, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 5558.384765625, + "entries": 1764978.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1528.53125, + "entries": 1764978.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.0927734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_AND": { + "name": "L1_BPTX_LUT1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B1": { + "name": "L1_BPTX_LUT1_B1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_B2": { + "name": "L1_BPTX_LUT1_B2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT1_OR": { + "name": "L1_BPTX_LUT1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_AND": { + "name": "L1_BPTX_LUT2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B1NotB2": { + "name": "L1_BPTX_LUT2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_B2NotB1": { + "name": "L1_BPTX_LUT2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_LUT2_NotOR": { + "name": "L1_BPTX_LUT2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_AND": { + "name": "L1_BPTX_TRIG2_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.3310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B1NotB2": { + "name": "L1_BPTX_TRIG2_B1NotB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_B2NotB1": { + "name": "L1_BPTX_TRIG2_B2NotB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BPTX_TRIG2_NotOR": { + "name": "L1_BPTX_TRIG2_NotOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.9501953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.3310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_AND": { + "name": "L1_BRIL_TRIG3_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.3310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_delayedAND": { + "name": "L1_BRIL_TRIG3_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG3_ref": { + "name": "L1_BRIL_TRIG3_ref", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.3310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.783203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.783203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.783203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.8544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.4736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.1640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 344.3525390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.1044921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 223.1787109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.3505859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.8623046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.1669921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.5263671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 324.5498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 297.9013671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 313.9013671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.5087890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 288.6376953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 301.2744140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 314.3837890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 325.8173828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 334.9736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 348.1103515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.35546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.35546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 434.869140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 420.427734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 407.646484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.0634765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.4697265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.1689453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 270.2490234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.1845703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.712890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.2578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.4140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.091796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.0341796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.052734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.7724609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7275390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.759765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.9306640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.849609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.505859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.033203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.552734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 436.603515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.966796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 406.146484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 279.1826171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.1708984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.873046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.568359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.013671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 254.166015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 338.267578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 323.896484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 309.216796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 294.228515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25_BptxAND": { + "name": "L1_ETT25_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT35_BptxAND": { + "name": "L1_ETT35_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.8544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.8544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.8544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.8544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.8544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.2333984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.0966796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.8544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.2255859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 167.9638671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 315.0888671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 316.3857421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.1435546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 432.1279296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 424.8037109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 386.3212890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 392.2587890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 391.1298828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 294.412109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.615234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.14453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.552734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.07421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.5439453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 159.2353515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.380859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.4423828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.9794921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.9326171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.919921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.8232421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.7529296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.783203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.533203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.69140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.123046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.982421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.099609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.9697265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.091796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.55859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.0927734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.4052734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.0927734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.5068359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.3564453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.0048828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.8759765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.20703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.13671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.4052734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.1396484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.7958984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.8857421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.783203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.4111328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.1748046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 250.4052734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.2333984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.0859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7685546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.2490234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.8115234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.6630859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.2216796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.0146484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 387.2138671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 416.4326171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 421.6787109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 418.0693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 414.3779296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 410.6357421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 400.4677734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.900390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.255859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.775390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.2890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.732421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.5625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.189453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 295.94921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 295.583984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 366.90625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 366.455078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 402.1953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 401.333984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 400.66796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 399.525390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 398.7265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 397.447265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.7509765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.87890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.3681640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.8798828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.4140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 422.3564453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 420.4150390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 405.8955078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 371.8603515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.30078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.85546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.8076171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR": { + "name": "L1_SingleJetC32_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.8076171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC32_NotBptxOR_3BX": { + "name": "L1_SingleJetC32_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC36_NotBptxOR_3BX": { + "name": "L1_SingleJetC36_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0537109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.01171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.0927734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.0927734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.2119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.3701171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.8681640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.8115234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.2080078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.2802734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.5361328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.4951171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.0126953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.9169921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.5517578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.935546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.9951171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.6923828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.330078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.041015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.8330078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.8076171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 397.7412109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 422.8662109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.162109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.8486328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 165.1572265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 372.2802734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 383.8935546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 356.8427734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.134765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.7451171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.4794921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.2861328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.6689453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.201171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.8564453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 120.0751953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 188.5859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 113.3916015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 99.37890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.3955078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.537109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.9091796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.4580078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 151.6904296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.3759765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.5927734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.509765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.8984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.4736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.9736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 79.22265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.591796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.83203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.6650390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.1611328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 126.1923828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.4736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.05859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.7138671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 121.9326171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 190.443359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 115.2490234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 101.236328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.2529296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.39453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.7666015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.3154296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 153.5478515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.2333984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.4501953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.3671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.755859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.3310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.8310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 81.080078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.44921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.689453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.59375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.59375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.5224609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.0185546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 128.0498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.9189453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.2236328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.5791015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.80078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.7021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.560546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.8623046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.4599609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8603515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.3359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 134.9599609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.93359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 144.654296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 433.69140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 446.23046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.255859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.162109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.5224609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.1044921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.84765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.4375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9189453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.1982421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9541015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.283203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.2119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.6357421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.2470703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.6044921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.521484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.13671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.513671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.5380859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.974609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.744140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.06640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.53515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 153.576171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 155.162109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6650390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.603515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 151.158203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.5068359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.537109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 163.955078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.2158203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 161.8623046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.904296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 167.611328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.8095703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.7275390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 159.0478515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 163.869140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.623046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.5224609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9990234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 159.8037109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 143.6396484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.853515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.8466796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.0107421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8076171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.7060546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.2490234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.6826171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.8076171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.9677734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 129.95703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 141.10546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 153.2890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 165.7109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 202.8232421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.814453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.6591796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.6728515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.103515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.865234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.4736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.7626953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.8056640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5712890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.5556640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.474609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.6455078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.0048828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.90625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.9033203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.6650390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.0927734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.1865234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.0185546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.583984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.6396484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.4091796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.3310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.263671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.091796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.28125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.0380859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.09765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.58984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.1171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.59375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.59375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.869140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.83203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 262.38671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 169.7978515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.3095703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.4111328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 376.109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 364.6796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.291015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.1611328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8466796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.615234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0146484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.853515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.8984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9794921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.8232421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.291015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.4970703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.52734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.5966796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.6796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.84765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.7392578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.029296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.2587890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.412109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.896484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.51171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.4306640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.0068359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.576171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.1484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.2041015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.345703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.20703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.1025390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.2197265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.880859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.072265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7822265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.052734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.166015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.166015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9384765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.837890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.689453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.6806640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.5009765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET100": { + "name": "HLT_PFHT300_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.509765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.912109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.396484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt50": { + "name": "HLT_PFHT750_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.802734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8076171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8076171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4267578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4267578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.59375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.59375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.87890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.87890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.87890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.4140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.45703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.55859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.5947265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.2900390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1611328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.0361328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.0009765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.5947265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 125.2509765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5205078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5673828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8486328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.400390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.041015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.099609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.482421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.216796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.115234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.072265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.037109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.365234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.283203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5380859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.6474609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.7021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.8037109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.5341796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.0693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.08984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.94140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.5126953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.6650390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.2548828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.8369140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.1123046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.791015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.8662109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.55859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.4375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.35546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.16015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.3271484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8056640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.3603515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.5009765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.1728515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.3212890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.7705078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2392578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.3486328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.8603515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800": { + "name": "HLT_PFHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 157.0439453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 140.2705078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.337890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.2880859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.3779296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.2724609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.5966796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.2294921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.0107421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.0078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.6640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_Mu5": { + "name": "HLT_PFMET120_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.587890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3759765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.912109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.9873046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.619140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4267578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9990234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.9404296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.0537109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.8125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.9091796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.2412109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.5380859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.5146484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.2490234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.0146484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.150390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.650390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.447265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.4267578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.3876953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.314453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.806640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.0302734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9326171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.4521484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.3115234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.45703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.0302734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7724609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.7890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.86328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.23046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.7255859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.4521484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.0810546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.3154296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.2958984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.8466796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.2919921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.9443359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.48046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.18359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.3544921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.94140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2587890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.646484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.728515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.892578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.08203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.0546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.79296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.4033203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.6103515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.8193359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.763671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 139.2802734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.384765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.5107421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.1201171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.16015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.55859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.8037109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.5595703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.47265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.4814453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.5166015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.71484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.2529296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.1435546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.1044921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.2763671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.138671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8115234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.33984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon22_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6650390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.3564453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.8447265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8095703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.048828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.654296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu14er_PFMET100": { + "name": "HLT_Mu14er_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.6416015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.5390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.24609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.013671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.853515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.048828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.123046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.189453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.974609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 150.400390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.029296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.76171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.5078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.837890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.990234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.095703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.134765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.787109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.474609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.9560546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.9287109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.9765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.1904296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.5341796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2724609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.1240234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0810546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8935546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.05078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.4609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.12109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 139.2158203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.4423828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.9638671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.8984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.6865234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.642578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.1328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0576171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.8369140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.0087890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.55859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.2822265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.1220703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.1767578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7607421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.3857421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.6748046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.4052734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.8408203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.150390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.212890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.212890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.212890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.548828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.974609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.716796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.4365234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.232421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.9521484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6650390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.689453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.974609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.3779296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.9609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.8798828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9033203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.5224609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 134.7763671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 125.8037109375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.78515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.404296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 139.896484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.068359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.21484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4267578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.3798828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9990234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.6650390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.2275390625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.3857421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.5048828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.3388671875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.8271484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.69140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2841796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.5380859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8076171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.9365234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.3427734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.9326171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.5458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.44140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.9521484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.974609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.830078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.876953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.607421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.6396484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.22265625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.32421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.9326171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.2509765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.958984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.8251953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3974609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.93359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.5771484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.1904296875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.6220703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.4990234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.443359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.044921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.0615234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.498046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.4375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.044921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity60ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.0703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity85ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.0703125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity110ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.3798828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity135ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.3798828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PixelTracks_Multiplicity160ForEndOfFill": { + "name": "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.3798828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.35546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.35546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.35546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.4716796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.009765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.80078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.8681640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.6298828125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.3466796875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.1123046875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.1640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.783203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.021484375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.3310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.9501953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.9501953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.7119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.3310546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.0927734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.87890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.1884765625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.4853515625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.40234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5693359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.455078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9990234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9990234375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.736328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.1982421875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0068359375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.1083984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5576171875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.5546875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.8203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.2578125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.005859375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.458984375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.052734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.916015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.7802734375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.2099609375, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.12890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.7890625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.55078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.69921875, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.640625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain_BRIL": { + "name": "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.1416015625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain_copy": { + "name": "HLT_ZeroBias_FirstBXAfterTrain_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9033203125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.2119140625, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.330078125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.4453125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.26953125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.61328125, + "entries": 2433947, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 65.9423828125, + "entries": 2433947, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 73.1611328125, + "entries": 2433947, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 6534.5146484375, + "entries": 2433947, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 46510.326171875, + "entries": 695950.9999999999, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12776.3828125, + "entries": 2433947, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 12691.3291015625, + "entries": 2433947, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 103889.23046875, + "entries": 11861969.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 13975.5634765625, + "entries": 2433947, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 14042.9580078125, + "entries": 2433947, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 170974.267578125, + "entries": 1493393.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 177627.2373046875, + "entries": 1388253.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1726.73828125, + "entries": 25980.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 77910.5, + "entries": 3182437.0000000005, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 569758.3759765625, + "entries": 13039888.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 12707.5791015625, + "entries": 2433947, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 89120.923828125, + "entries": 1215341.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 46328.8994140625, + "entries": 2433947, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 14487.244140625, + "entries": 383564.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 91312.83984375, + "entries": 827081.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 110135.298828125, + "entries": 2116016.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 11746.3408203125, + "entries": 1070501.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 71846.8994140625, + "entries": 2433947, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12735.5947265625, + "entries": 2433947, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 13115.4375, + "entries": 2433947, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 7538.11328125, + "entries": 2433947, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7639.0234375, + "entries": 2433947, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 8072.28125, + "entries": 2433947, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 8138.6884765625, + "entries": 2433947, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 7751.9990234375, + "entries": 2433947, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 75486.6640625, + "entries": 14379236.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 8435.6787109375, + "entries": 2433947, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 8469.1181640625, + "entries": 2433947, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 8481.984375, + "entries": 2433947, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 8491.89453125, + "entries": 2433947, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 954.53125, + "entries": 2433947, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1531.8740234375, + "entries": 2433947, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1137.0810546875, + "entries": 2433947, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 49339.6181640625, + "entries": 1807987.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 113949.1279296875, + "entries": 2183800.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 12970.076171875, + "entries": 2433947, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 174597.4228515625, + "entries": 17992296.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 13544.732421875, + "entries": 7300485.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 24874.22265625, + "entries": 2433947, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 67628.3466796875, + "entries": 1764978.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 40964.154296875, + "entries": 2433947, + "subs": [ + "L1_AlwaysTrue", + "L1_BPTX_LUT1_AND", + "L1_BPTX_LUT1_B1", + "L1_BPTX_LUT1_B2", + "L1_BPTX_LUT1_OR", + "L1_BPTX_LUT2_AND", + "L1_BPTX_LUT2_B1NotB2", + "L1_BPTX_LUT2_B2NotB1", + "L1_BPTX_LUT2_NotOR", + "L1_BPTX_TRIG2_AND", + "L1_BPTX_TRIG2_B1NotB2", + "L1_BPTX_TRIG2_B2NotB1", + "L1_BPTX_TRIG2_NotOR", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BRIL_TRIG3_AND", + "L1_BRIL_TRIG3_delayedAND", + "L1_BRIL_TRIG3_ref", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT25_BptxAND", + "L1_ETT35_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC32_NotBptxOR", + "L1_SingleJetC32_NotBptxOR_3BX", + "L1_SingleJetC36_NotBptxOR_3BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_ETT40_BptxAND" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 4374.26953125, + "entries": 2433947, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 58.4736328125, + "entries": 2433947, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 60.640625, + "entries": 2433947, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 43358.912109375, + "entries": 2433947, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPLoose_Gsf_DoubleMediumIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu35_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET100", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT800", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p57", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET120_Mu5", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon22_CaloIdL_L1ISO", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Mu14er_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_PixelTracks_Multiplicity60ForEndOfFill", + "HLT_PixelTracks_Multiplicity85ForEndOfFill", + "HLT_PixelTracks_Multiplicity110ForEndOfFill", + "HLT_PixelTracks_Multiplicity135ForEndOfFill", + "HLT_PixelTracks_Multiplicity160ForEndOfFill", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_TCDS", + "HLT_ZeroBias_IsolatedBunches", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_FirstCollisionInTrain_BRIL", + "HLT_ZeroBias_FirstBXAfterTrain_copy", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 60.640625, + "entries": 2433947, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 14, + "allsize": 0.123046875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.123046875, + "entries": 14, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.123046875, + "entries": 14, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1311, + "allsize": 2.0283203125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2138671875, + "entries": 1311, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.1748046875, + "entries": 1311, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2119140625, + "entries": 1311, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.2109375, + "entries": 1311, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.216796875, + "entries": 1311, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2138671875, + "entries": 1311, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.1748046875, + "entries": 1311, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2119140625, + "entries": 1311, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.2109375, + "entries": 1311, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.216796875, + "entries": 1311, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30550/BTagCSV_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30550/BTagCSV_doc.html new file mode 100644 index 000000000..d3227cb1a --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30550/BTagCSV_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for 0169B058-4690-FA49-9D48-D2DFEDE5CA71.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30550/BTagCSV_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30550/BTagCSV_doc.json new file mode 100644 index 000000000..c694f784c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30550/BTagCSV_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "0169B058-4690-FA49-9D48-D2DFEDE5CA71.root", + "filesize": 1448324.177734375, + "trees": { + "Events": { + "entries": 1149459, + "allsize": 1442813.3203125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 39.4384765625, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 44.1181640625, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 3098.8974609375, + "entries": 1149459, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 177.1884765625, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 521.8818359375, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 593.5234375, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 515.5224609375, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 516.0888671875, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 521.208984375, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 491.0556640625, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 470.5029296875, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 593.6796875, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 370.7119140625, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 667.5263671875, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 525.6826171875, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 491.2333984375, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 533.7802734375, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 525.6162109375, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 558.111328125, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 505.138671875, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 626.181640625, + "entries": 126220.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 291.0888671875, + "entries": 126220.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 327.607421875, + "entries": 126220.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 255.2255859375, + "entries": 126220.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 337.185546875, + "entries": 126220.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 299.146484375, + "entries": 126220.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 260.6494140625, + "entries": 126220.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 308.7314453125, + "entries": 126220.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 301.7822265625, + "entries": 126220.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 298.8486328125, + "entries": 126220.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 2190.6259765625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 2046.875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1794.8896484375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 2196.1328125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 2046.7880859375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 1755.599609375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 610.6748046875, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 5049.9814453125, + "entries": 5607590.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 13085.716796875, + "entries": 5607590.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 8432.5546875, + "entries": 5607590.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 13129.458984375, + "entries": 5607590.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 9125.69140625, + "entries": 5607590.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 2624.9560546875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 4005.802734375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 2655.8212890625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 3998.5, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 395.9326171875, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 2509.828125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 2506.37890625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 728.9453125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 728.81640625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2966.7421875, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1250.35546875, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1247.84375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1211.56640625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 1215.31640625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3107.63671875, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2100.15234375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3144.703125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2119.26953125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 3710.2578125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3003.84375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2259.078125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 3332.74609375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 2346.12890625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2967.78515625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2418.30859375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2459.01953125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 2984.859375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4592.16015625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4398.53125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 3471.64453125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 3618.24609375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 4637.66015625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4530.8828125, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 3316.390625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 4603.59765625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 2579.984375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 2596.5859375, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 2636.60546875, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 2883.59765625, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2346.46875, + "entries": 1112354.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 928.7734375, + "entries": 1112354.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 805.17578125, + "entries": 1112354.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1241.70703125, + "entries": 1112354.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 930.265625, + "entries": 1112354.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1048.3203125, + "entries": 1112354.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 966.59765625, + "entries": 1112354.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 2331.8125, + "entries": 1112354.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 2106.5078125, + "entries": 1112354.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 689.0771484375, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 634.7109375, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 813.4716796875, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1171.4228515625, + "entries": 1112354.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 823.7724609375, + "entries": 1112354.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 646.294921875, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 659.919921875, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 700.4814453125, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 676.05859375, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 700.46484375, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 734.2998046875, + "entries": 1112354.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 633.2412109375, + "entries": 1112354.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 375.7275390625, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1542.6796875, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 2675.2578125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 2957.37109375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 2796.77734375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 2881.703125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 2761.19921875, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 2819.4609375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 2533.9140625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 2617.125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 2580.5390625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 2477.625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 2612.3359375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 2522.609375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 2623.39453125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 2474.953125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 2588.953125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 2484.92578125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 2839.75, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2685.8046875, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 2897.41796875, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 2962.93359375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 2909.09765625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 2875.3046875, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 3344.90234375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 2658.328125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 2455.3515625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2148.734375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1351.56640625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 2689.5859375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 2920.31640625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 2896.6015625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 2935.53515625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 2999.56640625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 2946.91796875, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 2924.55078125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2675.61328125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 2989.71484375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 2904.70703125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 2877.49609375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 2687.96484375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 3319.3203125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 2453.4375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1824.5078125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 2694.0859375, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 2682.2421875, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 2681.59765625, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 2678.36328125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1874.33203125, + "entries": 1113206.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 732.7890625, + "entries": 1113206.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1011.98046875, + "entries": 1113206.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1011.46484375, + "entries": 1113206.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 970.36328125, + "entries": 1113206.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 918.9375, + "entries": 1113206.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1473.978515625, + "entries": 1113206.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 73.13671875, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 154.7587890625, + "entries": 12061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 143.8271484375, + "entries": 12061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 143.5458984375, + "entries": 12061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 138.513671875, + "entries": 12061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 151.26171875, + "entries": 12061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 107.9677734375, + "entries": 12061.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 407.3154296875, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3332.2705078125, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3291.078125, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 3512.8056640625, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 2699.0546875, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2271.4814453125, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 3523.8095703125, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 2896.4921875, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2472.1396484375, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1649.3076171875, + "entries": 1261376.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 874.2314453125, + "entries": 1261376.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 912.6181640625, + "entries": 1261376.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 892.69140625, + "entries": 1261376.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 788.6171875, + "entries": 1261376.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 599.4765625, + "entries": 1261376.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 748.90625, + "entries": 1261376.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 624.662109375, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 6408.6796875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 13644.88671875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 13584.73828125, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 13164.47265625, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 12996.5234375, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 16192.078125, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 14197.625, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 15169.09375, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 13647.60546875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 2962.48046875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 10599.21484375, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 9606.28125, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 19415.2421875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 2769.171875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 2771.4921875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 15042.00390625, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 2481.8046875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 12318.92578125, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 10987.796875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 10735.76953125, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 19003.19921875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 14881.16015625, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 12929.25390625, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 13738.7109375, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 11628.34765625, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 11889.08984375, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 9881.4296875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 11819.46875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 9798.63671875, + "entries": 8494417.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2251.69921875, + "entries": 8494417.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1371.82421875, + "entries": 8494417.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1380.1796875, + "entries": 8494417.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 1724.1640625, + "entries": 8494417.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1649.90234375, + "entries": 8494417.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 1898.28515625, + "entries": 8494417.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 1367.51953125, + "entries": 8494417.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2146.95703125, + "entries": 8494417.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 1872.52734375, + "entries": 8494417.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 2783.05859375, + "entries": 8494417.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 6461.0712890625, + "entries": 8494417.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1437.494140625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1277.6357421875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1297.10546875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1311.7216796875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 659.2734375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 323.7607421875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 683.1748046875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 654.3935546875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 665.6279296875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 1705.4130859375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1733.369140625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 349.41796875, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 3373.318359375, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 973.5322265625, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2279.857421875, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2278.6865234375, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1621.923828125, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2349.931640625, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1586.1884765625, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2246.7236328125, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 3196.009765625, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1725.7197265625, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2466.5029296875, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1594.6943359375, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2245.0625, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3077.24609375, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2794.88671875, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2452.4404296875, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 3333.615234375, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 3012.703125, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2129.310546875, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1934.611328125, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1800.7666015625, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 3086.23046875, + "entries": 771514.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 764.443359375, + "entries": 771514.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 705.384765625, + "entries": 771514.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 764.0244140625, + "entries": 771514.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 622.62109375, + "entries": 771514.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 699.81640625, + "entries": 771514.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 2276.541015625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 2276.767578125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 1539.9013671875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 1937.3701171875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 1540.6240234375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 2647.7978515625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 3983.953125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 2180.111328125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 1783.4248046875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 1809.904296875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 147.7978515625, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 592.630859375, + "entries": 144368.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 629.4677734375, + "entries": 144368.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 630.0380859375, + "entries": 144368.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 256.6142578125, + "entries": 144368.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 256.8828125, + "entries": 144368.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 544.8232421875, + "entries": 144368.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 255.3828125, + "entries": 144368.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 339.1748046875, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2094.61328125, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1398.375, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 2101.390625, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2118.98046875, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1441.2890625, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 2216.4765625, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2014.6640625, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1557.22265625, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1675.37109375, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 696.96484375, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2897.359375, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2728.91796875, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 2943.578125, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2860.02734375, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 2983.71875, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 2197.2421875, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 2962.01953125, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 1512.0546875, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 1971.546875, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 1971.14453125, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 1118.40234375, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 1495.734375, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 660.578125, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 1498.34765625, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1629.8359375, + "entries": 690853.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 693.66015625, + "entries": 690853.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 887.71875, + "entries": 690853.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 832.4140625, + "entries": 690853.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 944.7578125, + "entries": 690853.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 694.73828125, + "entries": 690853.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 597.90234375, + "entries": 690853.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 591.3046875, + "entries": 690853.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 652.4833984375, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 574.8173828125, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 546.7314453125, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 627.3583984375, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 627.9052734375, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 626.5849609375, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 597.1171875, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 854.4033203125, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 627.591796875, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 625.7724609375, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 607.7236328125, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 636.58984375, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 565.9697265625, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 515.13671875, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 506.7822265625, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 612.982421875, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 590.8720703125, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 617.3603515625, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 614.3984375, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 619.099609375, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 605.462890625, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 624.8916015625, + "entries": 690853.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 430.8720703125, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 2847.91015625, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 2849.654296875, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 788.62890625, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 787.048828125, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1807.212890625, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 2694.771484375, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 4082.86328125, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 2748.93359375, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 2399.3349609375, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 2578.400390625, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 2799.0146484375, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 5760.1689453125, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 5574.7822265625, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 4058.78125, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 5659.7119140625, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3100.4423828125, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3180.568359375, + "entries": 1414421.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 785.8095703125, + "entries": 1414421.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 850.3818359375, + "entries": 1414421.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 862.40234375, + "entries": 1414421.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1109.578125, + "entries": 1414421.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1373.2900390625, + "entries": 1414421.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 785.896484375, + "entries": 1414421.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 2039.857421875, + "entries": 1414421.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 869.6064453125, + "entries": 1414421.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 875.435546875, + "entries": 1414421.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 859.123046875, + "entries": 1414421.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 716.1396484375, + "entries": 1414421.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 736.2529296875, + "entries": 1414421.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 866.822265625, + "entries": 1414421.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 675.7001953125, + "entries": 1414421.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 223.61328125, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1378.697265625, + "entries": 468320.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1537.794921875, + "entries": 468320.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 381.7177734375, + "entries": 468320.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 382.548828125, + "entries": 468320.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 461.1044921875, + "entries": 468320.00000000006, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 472.71484375, + "entries": 468320.00000000006, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 492.775390625, + "entries": 468320.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 382.4658203125, + "entries": 468320.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 2643.095703125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 2187.6728515625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 2187.2958984375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 2187.4658203125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 2188.7724609375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 2188.4228515625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 2190.3154296875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 3997.7236328125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 2059.47265625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 2059.095703125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 2059.6015625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 2056.708984375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 2059.61328125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 2057.849609375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1875.51171875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 2191.67578125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 2047.6279296875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1781.271484375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 2186.7236328125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 2058.6328125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1877.7529296875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 3633.15625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 3654.7421875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 3784.390625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 3869.8642578125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 3716.7412109375, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 96.212890625, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 11387.544921875, + "entries": 6845691.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 11191.107421875, + "entries": 6845691.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 13053.94921875, + "entries": 6845691.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 3840.5419921875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 3956.1142578125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 3891.140625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 3936.44140625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 532.72265625, + "entries": 1149459, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 775.4755859375, + "entries": 1149459, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 617.9091796875, + "entries": 1149459, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 223.990234375, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1379.7666015625, + "entries": 468320.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1333.4228515625, + "entries": 468320.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 493.01953125, + "entries": 468320.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 344.4931640625, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 3184.009765625, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 3256.447265625, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 4113.05078125, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 3536.7763671875, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2799.5498046875, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 2820.5849609375, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 4066.92578125, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 3338.8173828125, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 2163.513671875, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 3435.6826171875, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 3347.3740234375, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 3229.7177734375, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 3126.1201171875, + "entries": 1511816.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 260.302734375, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1110.3828125, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1255.2314453125, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1365.55859375, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1318.7470703125, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1089.53515625, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1090.2578125, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1105.6005859375, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1038.658203125, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 933.65234375, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1315.5673828125, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 885.677734375, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1674.38671875, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1126.00390625, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1006.4443359375, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1142.5517578125, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 729.7890625, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1129.421875, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1050.47265625, + "entries": 364657.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 504.50390625, + "entries": 364657.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 597.2177734375, + "entries": 364657.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 621.72265625, + "entries": 364657.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 423.5341796875, + "entries": 364657.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 432.033203125, + "entries": 364657.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 476.5537109375, + "entries": 364657.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 604.822265625, + "entries": 364657.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 559.58984375, + "entries": 364657.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 450.9482421875, + "entries": 364657.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 2184.9951171875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 2070.955078125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 1859.2392578125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 744.681640625, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 24269.640625, + "entries": 12637299.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 22495.197265625, + "entries": 12637299.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 22198.259765625, + "entries": 12637299.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 13897.4609375, + "entries": 12637299.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1342.09765625, + "entries": 12637299.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 17203.99609375, + "entries": 12637299.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 3023.5, + "entries": 12637299.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 2415.720703125, + "entries": 12637299.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1469.9609375, + "entries": 12637299.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 4875.60546875, + "entries": 12637299.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 40.880859375, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 6452.3095703125, + "entries": 3445521.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 1553.8095703125, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1345.701171875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1171.513671875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 3145.228515625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1291.3916015625, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 1707.857421875, + "entries": 1149459, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 756.0126953125, + "entries": 1149459, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 740.1298828125, + "entries": 1149459, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 508.6064453125, + "entries": 1149459, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 6573.6650390625, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 6366.07421875, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 6545.55859375, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 6376.3505859375, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 3648.4248046875, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 2181.0693359375, + "entries": 3032016.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 627.0625, + "entries": 1112354.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1771.7197265625, + "entries": 8494417.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 626.4296875, + "entries": 690853.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 665.748046875, + "entries": 1414421.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 404.6865234375, + "entries": 364657.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 5608.4150390625, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 7867.27734375, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 6264.9892578125, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 4690.0986328125, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 7798.984375, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 6426.3037109375, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 7090.681640625, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 7054.138671875, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 8219.935546875, + "entries": 3032016.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1763.2421875, + "entries": 3032016.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.4716796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.2255859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.544921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.8486328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.66015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.7177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.0947265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.90625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.4853515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.3544921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.9169921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.2646484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.0498046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.0810546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.0693359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.6279296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.3193359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.9091796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 175.0283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.4931640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.3056640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.6962890625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.1142578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.4970703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.7705078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.67578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.67578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.603515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.650390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.935546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.7939453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.7783203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2314453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.1591796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.2158203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.814453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.0390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.1875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.6015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.76953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.994140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.5263671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.232421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.6787109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.888671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.0439453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.412109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.56640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.7626953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.181640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.412109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.470703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.564453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.333984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.380859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.404296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.435546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.7685546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.1787109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.623046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.779296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.376953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.369140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.7734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.302734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.548828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.568359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.072265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.3564453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.7177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.7177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.7177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.7177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.7177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.8486328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.8486328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.1240234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.8466796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.7177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.1162109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.9365234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.0966796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.9794921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.4482421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.6982421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.1005859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 168.6416015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.2861328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 183.6572265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.341796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.451171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.42578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.818359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.9794921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.298828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.9794921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.298828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.66015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.73828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.9697265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.4501953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.158203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.6572265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.2490234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.2060546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.662109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.2333984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.1982421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.005859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.392578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.8046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.607421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.978515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.6572265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.220703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.66015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.8125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.4716796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.9091796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.4716796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.2568359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.2001953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.1103515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.3447265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.8828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.4765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.5537109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.9248046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 170.3701171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.8193359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.7001953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.5107421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.7998046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 183.9404296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.81640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.1513671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0537109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.6513671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.1162109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.0732421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.1904296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.2177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.6865234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.2841796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.3896484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.6162109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.0576171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 195.4013671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.439453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.748046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.46875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.107421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.25390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.974609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.51171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.279296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.2578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.3203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.84375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 175.654296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 189.09375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.373046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.8671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.060546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.5546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 192.708984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.7080078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.16796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.4111328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.3056640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.5283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.5478515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.5908203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.7109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 198.9501953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.30078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.9794921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.98046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.7333984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.73046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.4716796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.4716796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.8017578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.9208984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.5283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.9951171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.9931640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.2919921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.1884765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.7763671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.5986328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.3232421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.2939453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.560546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.1748046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.2470703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.060546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.189453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.4140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.0166015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.7333984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.3115234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 208.9794921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.669921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.6572265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.7861328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.6708984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.1591796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 216.3271484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.173828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.6083984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.7548828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8798828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.9794921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.345703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.0087890625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.8759765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 95.16796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.5126953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 48.41796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.9697265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.560546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.2451171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.9111328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 91.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.8330078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.3505859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.4140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.517578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 35.53125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.5595703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.8251953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.23046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.095703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 36.55078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.18359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.298828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.298828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 37.8642578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.7353515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.8369140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.0947265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.4765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.1396484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.0068359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 96.298828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.6435546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 49.548828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.1005859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.69140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.3759765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.0419921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 92.6181640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.9638671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.4814453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.544921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.6484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 36.662109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.6904296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.9560546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.361328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.2265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.314453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.4296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.4296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.9951171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.8662109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.9482421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.4140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.39453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.65234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.0302734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.6162109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.599609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.1279296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.7255859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.341796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.0439453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4423828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.0908203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.748046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.130859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.033203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.927734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.27734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4599609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.587890625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5302734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4638671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4384765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.75390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2763671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.0234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.2529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.71484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.9990234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.73046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.0380859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.076171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.267578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.615234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.7294921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0966796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5654296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.21484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.21484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9228515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5966796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.021484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7900390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.908203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4267578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3076171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.6767578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.1787109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.673828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.583984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0380859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.341796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.09765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.439453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.767578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.427734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.900390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.7841796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.708984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.8759765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6630859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.189453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.388671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.619140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5654296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.521484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.4169921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.373046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.7841796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0263671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0576171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8662109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.4169921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.1123046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2373046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0849609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.6640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.3828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.12109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.02734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.41796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 138.9716796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.033203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.8701171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.373046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.04296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7392578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4775390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.58984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6259765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.3828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6103515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.36328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1064453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6689453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.255859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4541015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9970703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8291015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6376953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.4833984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1396484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.236328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.9482421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7568359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2255859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.154296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.13671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.9638671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.68359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.81640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.638671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.4736328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.7900390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4775390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3134765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.3359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.3828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.220703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7275390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3974609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.904296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6865234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.169921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.78125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0849609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.1162109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.333984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1767578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.2568359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.7578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.6796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.0556640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.923828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.5322265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.568359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.080078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.412109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.2001953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.41015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6689453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0498046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.533203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.86328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.7236328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.208984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2197265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.4501953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.345703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.123046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2119140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.615234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.6181640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.865234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.275390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5556640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6962890625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.150390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.064453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.208984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.814453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.513671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.080078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7333984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7333984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1103515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1103515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.16796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.16796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.16796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.66796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.1025390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5595703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7431640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.4541015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.8720703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.4580078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.5283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1533203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.2119140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.4267578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.001953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.412109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.419921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.556640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.482421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.712890625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.603515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.388671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.416015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.6982421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.3701171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7529296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.3623046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.2802734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.3623046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.71875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.41015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0517578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7431640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6142578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6982421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.919921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7919921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.9375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.42578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.34375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.0888671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5009765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2119140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.4384765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6572265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.2431640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1845703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6064453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5126953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1611328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.6689453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.638671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.7490234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5263671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.6279296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.6083984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1044921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.544921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.15625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7470703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.388671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.689453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0849609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.306640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.0576171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8154296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.8671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0654296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 154.3505859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.6591796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 163.4716796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.5224609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5732421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 178.326171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.587890625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 184.0478515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.6142578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 134.9453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 175.455078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.71484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 152.587890625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9013671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.0302734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9951171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.9521484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5263671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7490234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.3671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.50390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.99609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.7255859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0263671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9326171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9521484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.2919921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.2607421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1435546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1201171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.25390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2373046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4228515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.669921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.677734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.708984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.02734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5634765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.7626953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.9755859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.306640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5185546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.826171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9560546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.9208984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.29296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.9951171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6259765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7001953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1240234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.8369140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1123046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0068359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8623046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.853515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.7490234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9267578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.97265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.8369140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.3525390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3720703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.9951171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.927734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.169921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.39453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.83203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.060546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.353515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.091796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.107421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.72265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.341796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.427734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.490234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.490234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.978515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.193359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.4248046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.4326171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.4609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5068359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5380859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.7177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.7294921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1318359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3583984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.57421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.13671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.0166015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.4736328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5185546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.9375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.4990234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.150390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.99609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.6396484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.6572265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.0478515625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.5322265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 161.1611328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 143.2041015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.0361328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 128.4384765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8857421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.5888671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6826171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6416015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.595703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.419921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.095703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.912109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5888671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.189453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9951171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3798828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.177734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.8701171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.84765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7705078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.2373046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.2216796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.216796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.759765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.4140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.9501953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.5908203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.2646484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.4501953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1162109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7802734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.71484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4560546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.3193359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.5263671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.5849609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6318359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.30078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.3076171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.451171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.583984375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.423828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.076171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.2294921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.3486328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.4150390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.255859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0869140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3544921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.65234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.63671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5498046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.9892578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.0537109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.466796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.8740234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.376953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.6015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.572265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4873046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.67578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.67578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.67578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8115234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.740234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.88671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.36328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.7666015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0126953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8154296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0732421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9560546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9091796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.90625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.283203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.037109375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2255859375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.66015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.66015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.66015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8486328125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.791015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6025390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6025390625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9794921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.16796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.3564453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0947265625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.66015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9794921875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.568359375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5029296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.298828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4296875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.67578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0302734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6865234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9716796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9091796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3046875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.92578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.91796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.884765625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.474609375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.357421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.306640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7763671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7646484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.08203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.77734375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.4140625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.85546875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.955078125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3056640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1416015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.95703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.48828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.73828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.58203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.89453125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.67578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.95703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.67578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.6171875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.73828125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.2890625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.640625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.6796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.33203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.33203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.6796875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.33203125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.17578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.01953125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.17578125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.20703125, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.7421875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.638671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.638671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.65234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.65625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.65234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.671875, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.6484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.6484375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.65234375, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.66015625, + "entries": 1149459, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 39.4384765625, + "entries": 1149459, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 44.1181640625, + "entries": 1149459, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 3098.8974609375, + "entries": 1149459, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 11884.900390625, + "entries": 126220.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 6032.390625, + "entries": 1149459, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 5998.5205078125, + "entries": 1149459, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 49434.078125, + "entries": 5607590.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 6630.7587890625, + "entries": 1149459, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 6654.3212890625, + "entries": 1149459, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 116797.30859375, + "entries": 1112354.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 134231.7138671875, + "entries": 1113206.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 913.01171875, + "entries": 12061.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 30872.2958984375, + "entries": 1261376.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 361568.75390625, + "entries": 8494417.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 11748.9697265625, + "entries": 1149459, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 55465.669921875, + "entries": 771514.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 21976.3955078125, + "entries": 1149459, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 6743.8369140625, + "entries": 144368.99999999997, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 68431.9912109375, + "entries": 690853.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 68221.14453125, + "entries": 1414421.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 5713.4326171875, + "entries": 468320.00000000006, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 33998.6181640625, + "entries": 1149459, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 6020.5751953125, + "entries": 1149459, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 6123.109375, + "entries": 1149459, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 3633.15625, + "entries": 1149459, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 3654.7421875, + "entries": 1149459, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 3784.390625, + "entries": 1149459, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 3869.8642578125, + "entries": 1149459, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 3716.7412109375, + "entries": 1149459, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 35728.814453125, + "entries": 6845691.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 3840.5419921875, + "entries": 1149459, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 3956.1142578125, + "entries": 1149459, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 3891.140625, + "entries": 1149459, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 3936.44140625, + "entries": 1149459, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 532.72265625, + "entries": 1149459, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 775.4755859375, + "entries": 1149459, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 617.9091796875, + "entries": 1149459, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 42763.0634765625, + "entries": 1511816.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 25703.8544921875, + "entries": 364657.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 6115.189453125, + "entries": 1149459, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 113936.12109375, + "entries": 12637299.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 6493.1904296875, + "entries": 3445521.9999999995, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 11711.64453125, + "entries": 1149459, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 94983.8154296875, + "entries": 3032016.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 23863.927734375, + "entries": 1149459, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2447.296875, + "entries": 1149459, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 34.0947265625, + "entries": 1149459, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 35.4140625, + "entries": 1149459, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 24107.98828125, + "entries": 1149459, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 35.4140625, + "entries": 1149459, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 24, + "allsize": 0.162109375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.162109375, + "entries": 24, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.162109375, + "entries": 24, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 944, + "allsize": 1.7001953125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2255859375, + "entries": 944, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.8349609375, + "entries": 944, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2080078125, + "entries": 944, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.203125, + "entries": 944, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.228515625, + "entries": 944, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2255859375, + "entries": 944, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.8349609375, + "entries": 944, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2080078125, + "entries": 944, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.203125, + "entries": 944, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.228515625, + "entries": 944, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30551/BTagMu_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30551/BTagMu_doc.html new file mode 100644 index 000000000..54c071c30 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30551/BTagMu_doc.html @@ -0,0 +1,1650 @@ + + + + Documentation for 185EDC51-E8ED-B84C-99A3-3C196B926007.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30551/BTagMu_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30551/BTagMu_doc.json new file mode 100644 index 000000000..731a28d8f --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30551/BTagMu_doc.json @@ -0,0 +1,14054 @@ +{ + "filename": "185EDC51-E8ED-B84C-99A3-3C196B926007.root", + "filesize": 1071471.55859375, + "trees": { + "Events": { + "entries": 983059, + "allsize": 1066487.5966796875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 28.0419921875, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 34.2412109375, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 2665.5556640625, + "entries": 983059, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 120.2802734375, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 302.80078125, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 340.703125, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 301.125, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 301.20703125, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 304.51171875, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 287.7890625, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 274.99609375, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 341.25390625, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 221.28125, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 384.1171875, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 306.1328125, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 290.7578125, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 310.6640625, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 305.65625, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 325.38671875, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 295.71484375, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 357.05859375, + "entries": 66470.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 177.5703125, + "entries": 66470.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 198.19921875, + "entries": 66470.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 157.421875, + "entries": 66470.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 201.92578125, + "entries": 66470.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 181.56640625, + "entries": 66470.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 170.85546875, + "entries": 66470.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 187.953125, + "entries": 66470.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 183.88671875, + "entries": 66470.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 182.57421875, + "entries": 66470.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 1857.1982421875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 1746.6484375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1592.4072265625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 1863.48828125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 1746.1650390625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 1562.689453125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 510.1689453125, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 4266.4716796875, + "entries": 4723430.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 11110.025390625, + "entries": 4723430.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 7193.482421875, + "entries": 4723430.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 11187.873046875, + "entries": 4723430.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 7783.484375, + "entries": 4723430.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 2220.3017578125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 3430.302734375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 2248.6708984375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 3425.578125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 264.5205078125, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1358.71484375, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 1357.42578125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 461.359375, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 461.11328125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1578.6484375, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 766.765625, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 766.4296875, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 749.19921875, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 750.1484375, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1660.3828125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1156.76953125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1677.0546875, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1157.703125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1909.6796875, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1601.94140625, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1238.61328125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 1765.28125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1273.0859375, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1589.6953125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1314.296875, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1343.30078125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 1594.59375, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2356.53125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2251.23828125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 1786.140625, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 1838.42578125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 2379.6328125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2320.50390625, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 1755.34765625, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 2375.6015625, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1381.5703125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1388.671875, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1409.3203125, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 1536.18359375, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1285.30859375, + "entries": 545550.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 565.91015625, + "entries": 545550.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 504.6171875, + "entries": 545550.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 702.765625, + "entries": 545550.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 566.40625, + "entries": 545550.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 611.61328125, + "entries": 545550.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 586.96875, + "entries": 545550.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1279.34765625, + "entries": 545550.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1150.4453125, + "entries": 545550.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 444.91015625, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 419.390625, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 510.8828125, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 701.4453125, + "entries": 545550.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 512.0546875, + "entries": 545550.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 426.53515625, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 433.3515625, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 445.75, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 434.4921875, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 445.36328125, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 461.96484375, + "entries": 545550.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 424.3671875, + "entries": 545550.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 276.2216796875, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1148.203125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 2169.390625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 2403.71875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 2164.4140625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 2326.40234375, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 2234.5703125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 2248.04296875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 2182.75390625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 2247.53125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 2223.265625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 2106.76953125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 2243.63671875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 2149.6796875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 2249.96484375, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 2112.4921875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 2228.23828125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 2102.0078125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 2329.86328125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2041.6796875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 2239.65234375, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 2418.328125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 2356.54296875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 2345.515625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 2680.62109375, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 2114.0546875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 2129.22265625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1811.56640625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1291.30078125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 2118.2265625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 2380.73828125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 2316.2421875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 2344.24609375, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 2439.98046875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 2389.67578125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 2362.54296875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 2037.13671875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 2428.3203125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 2349.0234375, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 2342.0, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 2170.9921875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 2658.875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 1998.5078125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1416.75, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 2137.921875, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 2126.9453125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 2122.28515625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 2116.41015625, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1839.0703125, + "entries": 910438.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 546.59375, + "entries": 910438.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 754.78125, + "entries": 910438.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 754.61328125, + "entries": 910438.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 710.921875, + "entries": 910438.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 780.53125, + "entries": 910438.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1156.7109375, + "entries": 910438.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 88.50390625, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 232.8359375, + "entries": 31092.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 204.73828125, + "entries": 31092.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 204.01171875, + "entries": 31092.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 189.44921875, + "entries": 31092.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 218.42578125, + "entries": 31092.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 120.32421875, + "entries": 31092.000000000004, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 324.5634765625, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2731.9404296875, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2688.0537109375, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 2879.2373046875, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 2181.1943359375, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1817.6630859375, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 2886.9599609375, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 2385.0302734375, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1987.5107421875, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1318.4140625, + "entries": 1003479.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 745.0224609375, + "entries": 1003479.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 761.6171875, + "entries": 1003479.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 766.7333984375, + "entries": 1003479.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 627.01171875, + "entries": 1003479.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 482.046875, + "entries": 1003479.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 588.015625, + "entries": 1003479.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 502.724609375, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 4337.142578125, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 8856.3017578125, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 8692.5322265625, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 7988.8349609375, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 8260.5693359375, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 10631.1064453125, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 8911.7255859375, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 9848.9990234375, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 9012.81640625, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 1893.7421875, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 6937.087890625, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 6417.4970703125, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 12736.9873046875, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 1905.5126953125, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 1906.3759765625, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 9989.134765625, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 2802.837890625, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 8291.7216796875, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 7275.3125, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 7153.8916015625, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 12486.1201171875, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 9935.0234375, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 8787.365234375, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 8650.6826171875, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 7717.0908203125, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 7929.064453125, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 6612.0927734375, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 7904.763671875, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 6552.4013671875, + "entries": 5407549.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 1564.033203125, + "entries": 5407549.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1056.263671875, + "entries": 5407549.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1033.6748046875, + "entries": 5407549.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 1260.3408203125, + "entries": 5407549.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1299.5869140625, + "entries": 5407549.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 1801.224609375, + "entries": 5407549.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 1365.423828125, + "entries": 5407549.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 1531.58203125, + "entries": 5407549.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 1793.26171875, + "entries": 5407549.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 2070.501953125, + "entries": 5407549.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 4265.88671875, + "entries": 5407549.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1227.572265625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 708.5634765625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 717.6875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 724.2900390625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 1786.69140625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 726.7001953125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 1877.1181640625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 1757.8720703125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 1811.6923828125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 2103.8916015625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2172.099609375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 248.8984375, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 2095.66015625, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 650.63671875, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1443.671875, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1450.6484375, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1041.77734375, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1488.0546875, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1022.64453125, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1421.6953125, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 1980.0, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1110.60546875, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 1554.546875, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 996.95703125, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 1424.1953125, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1843.09765625, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1629.14453125, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 1544.8359375, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 2069.18359375, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 1891.58984375, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 1343.7109375, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1228.34375, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1127.79296875, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 1905.7421875, + "entries": 466461.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 519.70703125, + "entries": 466461.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 477.2265625, + "entries": 466461.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 519.41796875, + "entries": 466461.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 431.8203125, + "entries": 466461.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 480.13671875, + "entries": 466461.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 1930.123046875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 1931.302734375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 1312.7822265625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 1652.6650390625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 1311.8564453125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 2241.8740234375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 3409.96875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 1851.166015625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 1563.9306640625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 1547.103515625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 132.3232421875, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 560.859375, + "entries": 144926.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 596.5234375, + "entries": 144926.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 596.87109375, + "entries": 144926.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 226.91796875, + "entries": 144926.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 227.08203125, + "entries": 144926.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 513.73828125, + "entries": 144926.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 226.01953125, + "entries": 144926.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 312.4736328125, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3889.70703125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2440.7890625, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 3891.68359375, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3916.78125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2502.0703125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 4146.82421875, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3700.51171875, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2848.96875, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2983.8203125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 996.70703125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5908.39453125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 5677.8125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 5949.5, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 5843.01953125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 5989.55859375, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 4108.30859375, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 5911.29296875, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 2644.6171875, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 3631.5078125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 3628.484375, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 2034.3671875, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 2632.05859375, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 954.6484375, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 2672.01953125, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2942.8046875, + "entries": 1494656.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 987.765625, + "entries": 1494656.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1210.28515625, + "entries": 1494656.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1276.5546875, + "entries": 1494656.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1485.07421875, + "entries": 1494656.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 991.19140625, + "entries": 1494656.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 794.87890625, + "entries": 1494656.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 807.9140625, + "entries": 1494656.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 865.46875, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 706.2578125, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 612.98046875, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 783.91015625, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 795.70703125, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 778.59765625, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 759.390625, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1364.06640625, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 795.5078125, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 804.359375, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 796.3515625, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 781.98828125, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 658.765625, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 586.76171875, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 568.82421875, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 736.109375, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 711.296875, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 790.25, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 794.5546875, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 801.4765625, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 759.10546875, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 794.6328125, + "entries": 1494656.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 298.9326171875, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1591.921875, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 1592.609375, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 513.88671875, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 512.921875, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1058.875, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 1502.19921875, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 2207.4453125, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 1526.4375, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 1372.40625, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 1444.140625, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 1553.10546875, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 3037.4765625, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 2920.359375, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 2193.05859375, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 2996.1640625, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1695.2421875, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1733.21484375, + "entries": 715355.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 512.2109375, + "entries": 715355.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 550.5, + "entries": 715355.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 557.84375, + "entries": 715355.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 669.36328125, + "entries": 715355.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 785.1640625, + "entries": 715355.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 512.20703125, + "entries": 715355.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 1179.1015625, + "entries": 715355.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 562.65234375, + "entries": 715355.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 565.23828125, + "entries": 715355.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 554.8359375, + "entries": 715355.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 486.8203125, + "entries": 715355.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 497.953125, + "entries": 715355.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 559.83203125, + "entries": 715355.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 469.76171875, + "entries": 715355.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 205.203125, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1371.13671875, + "entries": 470379.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1530.125, + "entries": 470379.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 371.41015625, + "entries": 470379.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 372.16796875, + "entries": 470379.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 450.23828125, + "entries": 470379.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 461.7265625, + "entries": 470379.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 482.5234375, + "entries": 470379.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 372.07421875, + "entries": 470379.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 2238.599609375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 1855.6982421875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 1855.4345703125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 1855.7216796875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 1855.6845703125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 1856.4638671875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 1857.8251953125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 3420.7177734375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 1756.28125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 1756.017578125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 1757.91796875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 1755.822265625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 1755.58984375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 1757.912109375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1731.94140625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 1859.80078125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 1746.5322265625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1559.396484375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 1854.8896484375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 1759.58984375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1737.8369140625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 3109.93359375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 3151.26953125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 3206.953125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 3278.7841796875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 3181.1064453125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 98.068359375, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 9725.9384765625, + "entries": 5818104.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 9529.3798828125, + "entries": 5818104.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 11213.3828125, + "entries": 5818104.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 3415.0986328125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 3399.5693359375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 3435.51171875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 3450.1171875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 420.125, + "entries": 983059, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 638.3056640625, + "entries": 983059, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 487.2626953125, + "entries": 983059, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 205.466796875, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1369.7578125, + "entries": 470379.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1322.87109375, + "entries": 470379.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 482.4921875, + "entries": 470379.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 270.0654296875, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 3000.43359375, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 3068.32421875, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 3920.02734375, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 3371.8828125, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2645.20703125, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 2631.3203125, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 3864.11328125, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 3183.7109375, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1996.1484375, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 3256.515625, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 3140.9765625, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 3006.734375, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 2886.41015625, + "entries": 1492378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 179.755859375, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 644.36328125, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 731.734375, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 783.03125, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 761.578125, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 638.2421875, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 638.47265625, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 647.91796875, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 611.57421875, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 533.26953125, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 759.91796875, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 527.07421875, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 942.61328125, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 657.9140625, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 616.83984375, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 669.55078125, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 529.01171875, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 655.27734375, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 605.23828125, + "entries": 194033.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 321.29296875, + "entries": 194033.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 374.046875, + "entries": 194033.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 375.78515625, + "entries": 194033.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 274.05859375, + "entries": 194033.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 303.9453125, + "entries": 194033.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 303.55859375, + "entries": 194033.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 376.1640625, + "entries": 194033.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 348.53125, + "entries": 194033.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 319.39453125, + "entries": 194033.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 1855.0322265625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 1788.189453125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 1665.4443359375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 518.806640625, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 9719.19140625, + "entries": 4764013.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 8539.5380859375, + "entries": 4764013.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 8383.0029296875, + "entries": 4764013.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 6002.142578125, + "entries": 4764013.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 806.40234375, + "entries": 4764013.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 7346.337890625, + "entries": 4764013.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 1605.265625, + "entries": 4764013.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 1334.4345703125, + "entries": 4764013.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1034.044921875, + "entries": 4764013.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 2124.89453125, + "entries": 4764013.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 30.779296875, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 5457.8359375, + "entries": 2939691.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 1325.7021484375, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1149.384765625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1004.060546875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 2673.611328125, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1097.1044921875, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 1552.509765625, + "entries": 983059, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 628.4873046875, + "entries": 983059, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 614.9287109375, + "entries": 983059, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 385.2060546875, + "entries": 983059, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 3294.03125, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 3165.99609375, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 3277.8984375, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 3173.79296875, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 1932.21484375, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1234.5, + "entries": 1390258.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 417.09375, + "entries": 545550.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1379.22265625, + "entries": 5407549.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 803.22265625, + "entries": 1494656.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 458.02734375, + "entries": 715355.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 263.42578125, + "entries": 194033.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 2848.2421875, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 3883.23046875, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 3149.6328125, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2358.38671875, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 3856.05859375, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 3237.66796875, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 3526.5390625, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 3508.0, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 4035.87109375, + "entries": 1390258.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 973.5390625, + "entries": 1390258.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.1259765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.6533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.576171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.994140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.994140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.3896484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.2578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.994140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.5986328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.8623046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.73046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.6533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.7080078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.576171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.83984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.3662109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.8017578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.0947265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.2548828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.5595703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.2236328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.3212890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.4072265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.4931640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.1689453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.9482421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.6083984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.5419921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.5458984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.5498046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.5693359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.5771484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.4990234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.51171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.767578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.119140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.412109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.1904296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.8857421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.1552734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.6181640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.0029296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.4990234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.685546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.23046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.96875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.94921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.21484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.470703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.1025390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.896484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.5712890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.041015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.8115234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.912109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.91796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.5849609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.763671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.759765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.681640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.541015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.017578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.337890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.818359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.322265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.306640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.6962890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.7822265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.0556640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.8798828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.1806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.466796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.732421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.650390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.173828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.669921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.0625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.525390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.322265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.783203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.591796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.466796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.4443359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.5986328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.5986328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.5986328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.5986328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.5986328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.466796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.3896484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.466796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.466796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.3896484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.6923828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.9697265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.7744140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.0947265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.0791015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.6650390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.7197265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.7470703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.6806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.0009765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.9638671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.4482421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.9677734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.525390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.603515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.78515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.595703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.1806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.1806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.43359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.63671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.1904296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.8662109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.341796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.4873046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.5009765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.2119140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.794921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.8095703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.3681640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.119140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.087890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.9375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.341796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.4599609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.107421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.2578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 180.76953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.1259765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 170.5322265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.1259765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.2548828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.0107421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.6552734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 167.8232421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.1328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.1298828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.9111328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 175.5556640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.8720703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.994140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0888671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.9853515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.9892578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.3525390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.45703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.3642578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.6611328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.7001953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.9814453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.2431640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.7783203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.7001953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.9111328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.2470703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 165.3212890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.7041015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.1181640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.8291015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.076171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.056640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.4140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.978515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.2734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.826171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.30859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.267578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.9375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.236328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.73828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.236328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.29296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.912109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.7890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 159.638671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.5078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.259765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.3984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.216796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.6630859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.3125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.7998046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.0654296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.29296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.2177734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.5888671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.9599609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.27734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.2724609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.1953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.1806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.08984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.7080078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.2392578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.1640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.1259765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.1259765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.6201171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.7587890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.2568359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.7353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.5029296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.8134765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.9912109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.2509765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.4326171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.1533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.2919921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.392578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.0166015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.0380859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.736328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.619140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.78515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.6240234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.7119140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.2392578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.9228515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.6103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.923828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.4833984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.4599609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.1728515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.7705078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.7587890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.060546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.2158203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.2275390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.1748046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.4990234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.1806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 26.388671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 27.1318359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 47.3505859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 73.98828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.6982421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 33.91796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 28.1669921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 26.576171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 27.4501953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 28.9677734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.7744140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 26.6357421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 25.7041015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 25.78515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 26.576171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 25.828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 28.6669921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 27.0693359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.5078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 26.615234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 27.03125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 28.33203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 28.421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 27.4990234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 28.0693359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.4443359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 24.8623046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.1796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.9228515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 48.1416015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.779296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 46.4892578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 34.708984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 28.9580078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 28.2412109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 29.7587890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.5654296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.4267578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 26.4951171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 26.576171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 26.619140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 29.4580078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.8603515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.298828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.40625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 29.212890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.89453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.89453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 28.2900390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 28.8603515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 51.2041015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.78515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.01171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.38671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.7822265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.6103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.720703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.1728515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.4423828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.291015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.0029296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.6201171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.2763671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.603515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.416015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.576171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.732421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.18359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.9072265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.005859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.5283203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.3408203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.4794921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.6328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.8017578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.9853515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.24609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.8876953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1416015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.041015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.673828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.544921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3720703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3681640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2119140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.87109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.9453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.6396484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.2431640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.287109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.2373046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.162109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.5224609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.0322265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.2451171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.7119140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.697265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.9453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.666015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.3486328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.134765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.25390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.27734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.111328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.267578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.966796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.1923828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.0458984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.0791015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.017578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.107421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.783203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.0400390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.736328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.0048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.708984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.6142578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.9462890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9189453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.9462890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.1845703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.5322265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.5283203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1845703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.0859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.1171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.34765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 125.0048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.361328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.3330078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.783203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.10546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2841796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6044921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.0546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5302734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.3984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5185546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.38671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.8818359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2412109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.658203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6005859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.5146484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.64453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.6083984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.40234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.3701171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.1416015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.2041015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.029296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.0947265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.857421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.8759765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.6533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.662109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.0703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.8837890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.3203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.44921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.83984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.89453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.89453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.333984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.72265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2998046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6396484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.4833984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.5302734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.18359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.060546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.3349609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.5791015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.326171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.5283203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.822265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0869140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.8251953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.943359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.4794921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.1376953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.27734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.6357421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.708984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.6201171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.412109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.416015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.0859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.728515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.7021484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.64453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.7763671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.8798828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.017578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.09765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6904296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.947265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.39453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.9287109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.5341796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.173828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.283203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3701171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.455078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.5068359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.373046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3076171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.0654296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.373046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.892578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.716796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.294921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.712890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.123046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.322265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.7080078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.7080078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.9716796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.9716796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.89453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.89453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.3125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.3125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.3125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.26953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.28515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.31640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.8154296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.2099609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.0224609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8466796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.8037109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.4091796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.2568359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.8935546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.9091796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.9755859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.720703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.587890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.681640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.158203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.333984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.873046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.654296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.654296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.626953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.3095703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.6728515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.9541015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5400390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0009765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.4453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.34765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.5498046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.6201171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4365234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.9052734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6884765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.779296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.4814453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.6328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.2119140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.287109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.9560546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.1904296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.3193359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.2333984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3427734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.8466796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6552734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.3427734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6826171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.2412109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.740234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1962890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1728515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.4814453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5634765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6455078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.576171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.21484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.1875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.7216796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.162109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.376953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.3486328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.455078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.8955078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2314453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.45703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6181640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7705078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9580078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.5478515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.0009765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.759765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.814453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.560546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.5458984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2255859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.697265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.23828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.654296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6337890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.9228515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0634765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.9267578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.26171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3447265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.8173828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.62109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.99609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.23046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.30078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3955078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.8681640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.4228515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.0595703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6259765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2236328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.0244140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1962890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.29296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.7001953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.11328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.5732421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.705078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.732421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.759765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.71484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 144.2734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 152.8505859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 147.6005859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.5087890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 134.736328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1376953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.908203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.0009765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.4189453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.72265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.6689453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.5419921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.8466796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0869140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.4365234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.0390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.5556640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.2783203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0986328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.423828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.7197265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.6123046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.8232421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.1787109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2177734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.1533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.857421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.271484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.4609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.5234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.634765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.146484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.646484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.646484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.75, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.59375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.998046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.021484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.083984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.259765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.412109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.7197265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1728515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.91796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.2431640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.2705078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.2978515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3369140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.4384765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.5712890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.21875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.9375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.6953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.4365234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.6279296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.4541015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.7265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.6533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.146484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.88671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3017578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.6240234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.3427734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.71484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.7685546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8427734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0107421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3193359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7724609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.8759765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.7587890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7783203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.1982421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.244140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.333984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.056640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.462890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.2080078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.333984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6923828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1201171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.162109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1884765625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.7802734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.0908203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6611328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.552734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.154296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.6953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.1279296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0615234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.9423828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.7216796875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.8603515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.8642578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.91015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3916015625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.2470703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.5517578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.6650390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.7314453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.798828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.240234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.212890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.224609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.1376953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3623046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.77734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.03125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.4609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.3359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.4638671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.751953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.7138671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.8095703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.97265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.9609375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.9423828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.6318359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.208984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.181640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.1103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.1376953125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.7080078125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.283203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.15234375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.908203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.2353515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.5244140625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.767578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.81640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.8037109375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2763671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.0283203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.1611328125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.9423828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.0439453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.73046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.998046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.521484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.6533203125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.3896484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.9169921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.9169921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.1806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.3896484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.3896484375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.4443359375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.8623046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2578125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.1806640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.685546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.3447265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.103515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.89453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.5048828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2939453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.0322265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.9462890625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.4921875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.76171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.75390625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.556640625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.201171875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.060546875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.029296875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1845703125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.2548828125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.8671875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.30859375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.33984375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.3046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.78515625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.453125, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.3857421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.3857421875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.73046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.72265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.73046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.73046875, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.72265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.7265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.7265625, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.734375, + "entries": 983059, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 28.0419921875, + "entries": 983059, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 34.2412109375, + "entries": 983059, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 2665.5556640625, + "entries": 983059, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 7013.3896484375, + "entries": 66470.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 5196.25390625, + "entries": 983059, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 5172.3427734375, + "entries": 983059, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 42051.505859375, + "entries": 4723430.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 5650.6044921875, + "entries": 983059, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 5674.2490234375, + "entries": 983059, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 63906.8759765625, + "entries": 545550.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 109375.6943359375, + "entries": 910438.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1258.2890625, + "entries": 31092.000000000004, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 25171.0146484375, + "entries": 1003479.0000000001, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 241348.4619140625, + "entries": 5407549.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 15614.1787109375, + "entries": 983059, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 34941.7421875, + "entries": 466461.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 18752.7724609375, + "entries": 983059, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 6460.9228515625, + "entries": 144926.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 117561.9814453125, + "entries": 1494656.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 38671.9091796875, + "entries": 715355.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 5616.60546875, + "entries": 470379.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 29067.6279296875, + "entries": 983059, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 5165.7294921875, + "entries": 983059, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 5352.31640625, + "entries": 983059, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 3109.93359375, + "entries": 983059, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 3151.26953125, + "entries": 983059, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 3206.953125, + "entries": 983059, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 3278.7841796875, + "entries": 983059, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 3181.1064453125, + "entries": 983059, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 30566.76953125, + "entries": 5818104.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 3415.0986328125, + "entries": 983059, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 3399.5693359375, + "entries": 983059, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 3435.51171875, + "entries": 983059, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 3450.1171875, + "entries": 983059, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 420.125, + "entries": 983059, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 638.3056640625, + "entries": 983059, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 487.2626953125, + "entries": 983059, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 40241.8701171875, + "entries": 1492378.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 15393.580078125, + "entries": 194033.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 5308.666015625, + "entries": 983059, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 47414.0615234375, + "entries": 4764013.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 5488.615234375, + "entries": 2939691.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 10045.7890625, + "entries": 983059, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 47840.8076171875, + "entries": 1390258.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 21504.6533203125, + "entries": 983059, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_DoubleTau70er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT55_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_ETT75_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 1810.78125, + "entries": 983059, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 24.8623046875, + "entries": 983059, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 25.78515625, + "entries": 983059, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 17869.2265625, + "entries": 983059, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu24_eta2p1", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu24_eta2p1", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 25.78515625, + "entries": 983059, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 22, + "allsize": 0.154296875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.154296875, + "entries": 22, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.154296875, + "entries": 22, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1946, + "allsize": 2.1689453125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2373046875, + "entries": 1946, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.2255859375, + "entries": 1946, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2353515625, + "entries": 1946, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.234375, + "entries": 1946, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.236328125, + "entries": 1946, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2373046875, + "entries": 1946, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.2255859375, + "entries": 1946, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2353515625, + "entries": 1946, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.234375, + "entries": 1946, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.236328125, + "entries": 1946, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30552/Charmonium_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30552/Charmonium_doc.html new file mode 100644 index 000000000..0696b0a1a --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30552/Charmonium_doc.html @@ -0,0 +1,1610 @@ + + + + Documentation for 064283AD-20D6-D541-8E78-31C35DA1EE61.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30552/Charmonium_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30552/Charmonium_doc.json new file mode 100644 index 000000000..edc487729 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30552/Charmonium_doc.json @@ -0,0 +1,13654 @@ +{ + "filename": "064283AD-20D6-D541-8E78-31C35DA1EE61.root", + "filesize": 1382276.380859375, + "trees": { + "Events": { + "entries": 1979211, + "allsize": 1377822.82421875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 42.1201171875, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 48.2451171875, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 5307.8173828125, + "entries": 1979211, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 71.1044921875, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 128.85546875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 131.765625, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 132.45703125, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 132.46484375, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 132.26171875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 123.41015625, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 121.171875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 132.09765625, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 123.42578125, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 135.63671875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 129.23046875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 133.44921875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 128.11328125, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 127.78515625, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 135.82421875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 132.66796875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 140.046875, + "entries": 8006.000000000001, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 110.0859375, + "entries": 8006.000000000001, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 113.5078125, + "entries": 8006.000000000001, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 106.2734375, + "entries": 8006.000000000001, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 116.296875, + "entries": 8006.000000000001, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 113.37890625, + "entries": 8006.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 108.42578125, + "entries": 8006.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 114.69921875, + "entries": 8006.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 114.0546875, + "entries": 8006.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 115.4453125, + "entries": 8006.000000000001, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 3707.8388671875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3448.9453125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3089.6533203125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 3720.515625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3447.4736328125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2991.837890625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1040.6494140625, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 9602.083984375, + "entries": 11507913.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 26143.322265625, + "entries": 11507913.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 17111.4931640625, + "entries": 11507913.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 26249.021484375, + "entries": 11507913.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 18205.044921875, + "entries": 11507913.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 4399.4228515625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 6782.169921875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 4481.6748046875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 6795.62109375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 301.5791015625, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 885.109375, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 885.5, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 417.40625, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 416.7734375, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1039.046875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 437.59765625, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 439.3203125, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 431.82421875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 433.484375, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1085.640625, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 811.6171875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1100.6796875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 817.046875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1150.00390625, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1056.7578125, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 834.2421875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 1118.35546875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 777.28515625, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1048.9375, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 859.84375, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 896.16796875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 1023.26171875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1296.5546875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1115.92578125, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 1210.046875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 1238.765625, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1309.19921875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1208.0546875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 1118.921875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 1367.96484375, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 909.06640625, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 908.52734375, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 941.81640625, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 1042.7421875, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 901.984375, + "entries": 277038.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 484.484375, + "entries": 277038.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 469.57421875, + "entries": 277038.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 560.77734375, + "entries": 277038.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 484.75, + "entries": 277038.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 477.66015625, + "entries": 277038.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 494.3203125, + "entries": 277038.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 911.3515625, + "entries": 277038.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 812.30859375, + "entries": 277038.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 411.1875, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 401.56640625, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 454.95703125, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 528.5078125, + "entries": 277038.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 458.8203125, + "entries": 277038.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 414.8671875, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 423.48828125, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 429.0390625, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 420.87890625, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 430.3828125, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 434.11328125, + "entries": 277038.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 400.0859375, + "entries": 277038.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 77.3583984375, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 133.8828125, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 151.79296875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 153.90234375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 151.984375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 152.8203125, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 152.43359375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 153.3671875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 145.9921875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 146.515625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 144.94921875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 144.95703125, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 146.81640625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 146.90625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 145.99609375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 145.0546875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 146.734375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 146.37109375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 150.40234375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 149.76171875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 154.41015625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 155.0390625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 154.3828125, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 154.21484375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 155.09765625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 147.78515625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 139.8984375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 135.08984375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 120.7734375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 151.796875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 154.96484375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 154.2265625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 154.51171875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 157.91015625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 157.32421875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 156.99609375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 151.21484375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 156.796875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 155.9765625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 155.8828125, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 151.40234375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 155.7109375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 143.5703125, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 137.19140625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 148.546875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 148.78125, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 148.13671875, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 147.8359375, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 138.66015625, + "entries": 14201.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 109.15234375, + "entries": 14201.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 118.98828125, + "entries": 14201.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 119.63671875, + "entries": 14201.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 117.61328125, + "entries": 14201.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 118.6875, + "entries": 14201.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 124.5234375, + "entries": 14201.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 72.69140625, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 143.21484375, + "entries": 8560.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 134.79296875, + "entries": 8560.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 134.8671875, + "entries": 8560.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 130.59375, + "entries": 8560.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 141.71875, + "entries": 8560.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 108.06640625, + "entries": 8560.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 699.9462890625, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 6304.408203125, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 6178.3115234375, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 6686.216796875, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 4894.3857421875, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4031.8271484375, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 6734.404296875, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 5512.8701171875, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4362.1298828125, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2748.5634765625, + "entries": 2447232.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1636.4755859375, + "entries": 2447232.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1562.2099609375, + "entries": 2447232.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1698.796875, + "entries": 2447232.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1308.71484375, + "entries": 2447232.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1012.234375, + "entries": 2447232.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1165.88671875, + "entries": 2447232.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 962.458984375, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 6501.81640625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 11271.8671875, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 10344.54296875, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 10266.6640625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 10078.19140625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 15012.0703125, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 13258.453125, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 13990.58984375, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 12619.3984375, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 2457.1015625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 9275.30078125, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 9281.28125, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 18141.0849609375, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 3506.57421875, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 3507.4765625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 13458.4140625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 4777.20703125, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 12014.953125, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 10710.28515625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 10056.078125, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 17989.9794921875, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 13122.984375, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 14624.18359375, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 9736.1640625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 11852.15625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 11984.296875, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 9169.203125, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 11956.7109375, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 9150.7265625, + "entries": 7671472.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2139.8828125, + "entries": 7671472.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1743.12890625, + "entries": 7671472.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1784.28515625, + "entries": 7671472.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2011.841796875, + "entries": 7671472.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2249.08203125, + "entries": 7671472.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 3014.9140625, + "entries": 7671472.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2531.21875, + "entries": 7671472.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2144.8125, + "entries": 7671472.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2962.67578125, + "entries": 7671472.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 3746.57421875, + "entries": 7671472.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 5650.4921875, + "entries": 7671472.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1467.240234375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 579.4541015625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 583.51171875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 586.1494140625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 3706.4375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 1148.5556640625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 4068.1806640625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 3636.0830078125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 3765.0400390625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 3907.0751953125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 4231.150390625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 403.3828125, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 2728.70703125, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 675.58984375, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1911.5, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1922.48046875, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1374.55859375, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1965.19140625, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1374.7109375, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1865.484375, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 2584.6328125, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1469.3515625, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2062.96484375, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1202.9765625, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 1842.484375, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2064.0546875, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1626.640625, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2047.38671875, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 2627.51953125, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 2468.48828125, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 1748.421875, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1633.40234375, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1453.87109375, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 2478.265625, + "entries": 588964.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 743.49609375, + "entries": 588964.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 644.08203125, + "entries": 588964.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 743.171875, + "entries": 588964.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 633.578125, + "entries": 588964.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 692.984375, + "entries": 588964.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 3855.310546875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 3854.435546875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2477.7353515625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3141.1259765625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2477.7939453125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 4455.1630859375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 6837.58203125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 3657.306640625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3031.9228515625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3012.982421875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 42.8935546875, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 85.80859375, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 87.7421875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 87.7421875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 86.96875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 88.12890625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 86.1953125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 86.58203125, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 471.6337890625, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 10115.57421875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 5822.57421875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 10095.8203125, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 10362.41796875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 6247.12890625, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 10899.43359375, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 9764.94140625, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 6506.1171875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 7716.73828125, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1873.25390625, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 12082.375, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 8613.23046875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 13560.015625, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 11664.9765625, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 14747.671875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 10895.9296875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 15798.09765625, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 6362.2890625, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 8753.91796875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 9721.60546875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 4901.12890625, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 5997.10546875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 2030.38671875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 9476.48046875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 8941.48046875, + "entries": 4225561.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 2182.76953125, + "entries": 4225561.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2813.140625, + "entries": 4225561.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 2795.96875, + "entries": 4225561.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 3429.92578125, + "entries": 4225561.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 2187.60546875, + "entries": 4225561.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1644.04296875, + "entries": 4225561.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1568.04296875, + "entries": 4225561.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1775.08984375, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1378.421875, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1272.671875, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1448.734375, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1433.41796875, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1417.79296875, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1372.890625, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2679.796875, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1434.2578125, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1537.453125, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1779.6484375, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 2514.03515625, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1691.609375, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 1566.27734375, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 1174.6796875, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 2548.421875, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 2112.01953125, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1443.84375, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1744.0078125, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1737.0078125, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1965.359375, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1433.90234375, + "entries": 4225561.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 270.3154296875, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 695.74609375, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 696.8046875, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 352.74609375, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 351.87890625, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 573.00390625, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 686.8359375, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 901.11328125, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 670.10546875, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 641.53125, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 756.09765625, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 765.27734375, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1092.97265625, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 979.734375, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 898.7578125, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 1044.4296875, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 742.0625, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 761.97265625, + "entries": 211538.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 350.69921875, + "entries": 211538.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 380.30859375, + "entries": 211538.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 388.3359375, + "entries": 211538.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 404.31640625, + "entries": 211538.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 451.08203125, + "entries": 211538.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 350.625, + "entries": 211538.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 612.88671875, + "entries": 211538.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 372.484375, + "entries": 211538.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 381.67578125, + "entries": 211538.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 377.25390625, + "entries": 211538.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 361.515625, + "entries": 211538.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 368.09765625, + "entries": 211538.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 376.515625, + "entries": 211538.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 338.4453125, + "entries": 211538.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 42.69921875, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 85.421875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 85.421875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 86.58203125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 87.7421875, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 91.22265625, + "entries": 0.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 91.609375, + "entries": 0.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 87.7421875, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 87.35546875, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 4443.955078125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 3697.8076171875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 3697.4189453125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 3697.8818359375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 3699.4501953125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 3697.6865234375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 3701.7119140625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 6858.1005859375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3479.953125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3479.564453125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3480.1015625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3481.505859375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3479.265625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3478.646484375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3325.15625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 3710.2109375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3448.8095703125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3027.748046875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 3695.7763671875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3472.62109375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3294.8837890625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 6084.87890625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 6184.90234375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 6527.6953125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 6558.5810546875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 6293.9384765625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 240.974609375, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 19261.34375, + "entries": 11607047.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 18975.53515625, + "entries": 11607047.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 21163.703125, + "entries": 11607047.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 6719.9892578125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 5113.9521484375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 6796.22265625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 6733.72265625, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 656.01953125, + "entries": 1979211, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1253.5673828125, + "entries": 1979211, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 856.7626953125, + "entries": 1979211, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 43.087890625, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 88.12890625, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 86.58203125, + "entries": 0.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 88.515625, + "entries": 0.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 64.4599609375, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 144.1015625, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 144.328125, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 148.5390625, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 146.26171875, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 137.390625, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 137.1015625, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 148.796875, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 142.890625, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 130.05859375, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 143.984375, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 141.91015625, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 139.72265625, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 137.96875, + "entries": 15719.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 296.896484375, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 919.73046875, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1063.55078125, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1130.73046875, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1100.72265625, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 936.8125, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 938.5625, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 887.7109375, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 787.67578125, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 715.3125, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1099.43359375, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 758.984375, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1270.4765625, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 944.9296875, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 911.33984375, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 943.11328125, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 956.0390625, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 926.5390625, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 855.4765625, + "entries": 271346.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 483.7578125, + "entries": 271346.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 543.89453125, + "entries": 271346.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 516.64453125, + "entries": 271346.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 416.55859375, + "entries": 271346.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 454.89453125, + "entries": 271346.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 449.04296875, + "entries": 271346.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 559.58203125, + "entries": 271346.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 555.5078125, + "entries": 271346.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 490.42578125, + "entries": 271346.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 3683.5986328125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3471.705078125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3096.3583984375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 259.341796875, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 1093.671875, + "entries": 370215.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 1063.421875, + "entries": 370215.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 1064.06640625, + "entries": 370215.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 674.73046875, + "entries": 370215.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 286.85546875, + "entries": 370215.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 813.1953125, + "entries": 370215.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 368.94140625, + "entries": 370215.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 352.76953125, + "entries": 370215.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 383.75, + "entries": 370215.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 460.74609375, + "entries": 370215.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 43.111328125, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 10844.16015625, + "entries": 5937188.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2686.4208984375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2393.693359375, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2127.482421875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 5354.720703125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2248.9951171875, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2889.501953125, + "entries": 1979211, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1289.6083984375, + "entries": 1979211, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1261.4794921875, + "entries": 1979211, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 560.7724609375, + "entries": 1979211, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 3619.515625, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 3556.5390625, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 3601.7734375, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 3554.19921875, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2354.62890625, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1537.78125, + "entries": 1417554.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 400.37890625, + "entries": 277038.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2294.18359375, + "entries": 7671472.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1528.47265625, + "entries": 4225561.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 338.7578125, + "entries": 211538.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 401.3515625, + "entries": 271346.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3234.94921875, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 4303.421875, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 3487.796875, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2613.8984375, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 4291.81640625, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 3555.5078125, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 3888.890625, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 3863.4140625, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 4438.30859375, + "entries": 1417554.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1249.953125, + "entries": 1417554.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.6259765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.986328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.4599609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.0419921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.0400390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.3095703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.5947265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.3876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.7236328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.6455078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.1103515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.9501953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.3798828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.9833984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.7685546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.2021484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.5537109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.9521484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.3544921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.8466796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.767578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.861328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.392578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.8798828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.833984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.03125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.90625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.48828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.24609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.80859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 341.482421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.6181640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.130859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.3369140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.728515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.099609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.8203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.0146484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 280.396484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 334.580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 286.990234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 312.451171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 301.775390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.986328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.658203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.2080078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.1220703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.001953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.771484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.84765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.708984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.087890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.009765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.7919921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0830078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.1181640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.0869140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.5244140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.4892578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.0634765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.3173828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.6220703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.1728515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3349609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.1279296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.5849609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.955078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.302734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.61328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.376953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.48828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.3779296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.5498046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.884765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.9443359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.8798828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.4072265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.841796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.3330078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.0126953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.474609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.587890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.1796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.830078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.873046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.4755859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.072265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.09765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.4697265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.2548828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.5068359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.2177734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.1396484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.68359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.7265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.3291015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.1494140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.9423828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.2431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.5107421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.2236328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.1259765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.5517578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.03515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.9072265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.1376953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.9306640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.9033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.1689453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.5908203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.1806640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.9931640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.4658203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.2939453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.4150390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.9775390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.697265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.8203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.8203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.76953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.544921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.69140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.013671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.72265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.017578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.94921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.392578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.41796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.017578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.60546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.091796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.8359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.154296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.5302734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.59765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.7099609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.7607421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.8818359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.9912109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.8310546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.4677734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.07421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.91015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.1953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1806640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.94921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.8486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.5888671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.2705078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.3544921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 191.3408203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.1552734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.0986328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.3466796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.3955078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.8779296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.451171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.0791015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.8427734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.857421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.056640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.8203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.6708984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1806640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.4384765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.2236328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.7294921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.4794921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.9111328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.9931640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.4267578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 305.982421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 299.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 245.7001953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.0888671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.3544921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.587890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.2490234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 91.5927734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 150.24609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 85.6357421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.1513671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.986328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.0087890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.9130859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 48.9189453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.7998046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.7548828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.8203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.154296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 38.94921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.9013671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.0263671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.1953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.357421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 39.78125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.70703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.3466796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.2529296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 90.2451171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 37.4599609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.75390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.4150390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 92.7587890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 151.412109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 86.8017578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.556640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.3173828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.1748046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.0791015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 50.0849609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.9658203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.9208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.986328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.3203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.115234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.0673828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.1923828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.361328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.5234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.873046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.9296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.9296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.5126953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.4189453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 91.3994140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.84765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.67578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8408203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.6533203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.837890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.1611328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.9150390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.623046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9248046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3193359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6982421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.583984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.677734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.123046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.220703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.85546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 166.9541015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.916015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 265.5869140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5126953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7919921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5517578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.14453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.9384765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.12890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.9267578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.34375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.1416015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.181640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.119140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.197265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5361328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.3056640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0751953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 246.8359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 194.9765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 328.7646484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.6494140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.123046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.5498046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.001953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1826171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.8173828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.2412109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.8876953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.326171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.126953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.5751953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.044921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.904296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.904296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.892578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4931640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.013671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4013671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6572265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.337890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.994140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6298828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.970703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6064453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.947265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.6728515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.1572265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9892578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0791015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0869140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0986328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.1142578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.47265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.87109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.2080078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.408203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.9072265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.455078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.1904296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8935546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.62109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.3310546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.09375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.2724609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5107421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.9912109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.861328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8193359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.5029296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.2412109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.6044921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8759765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.7861328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.6181640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.0244140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6259765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.681640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5517578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.09765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.6484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.552734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.35546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2451171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1435546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0185546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0224609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.19140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.26953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.240234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4599609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7705078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.353515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0283203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.251953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.6533203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8720703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.744140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.5068359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.1611328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.4375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.6640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.2138671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.123046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.0771484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.318359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.583984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.908203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.7763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9873046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.681640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5537109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.080078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.12109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6669921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4287109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.779296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.259765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0810546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.533203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8271484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.119140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.1318359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1474609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.427734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.236328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.259765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.775390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.662109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.857421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.740234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1806640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1806640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5693359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5693359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.59765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.59765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.59765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.05859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2490234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2568359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3076171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3349609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3154296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8115234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.5888671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4677734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4677734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4755859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.666015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.669921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.701171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.732421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.712890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.064453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.916015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.447265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.435546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6337890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6455078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6494140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6923828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7041015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.7197265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.59765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7958984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7919921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8310546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8076171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3525390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.099609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4189453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.16015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.2890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5595703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4677734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4951171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4716796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4990234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5146484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5341796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5302734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.5576171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4873046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1748046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.001953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6416015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5830078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6181640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6376953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6181640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.986328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7919921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.044921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7939453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.154296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1962890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1416015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2900390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7158203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6728515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.9228515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7978515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6298828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.216796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.615234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6044921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7099609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.26953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.341796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.134765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5166015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5166015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.6611328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.6806640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0673828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2900390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.9375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.87890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.2578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.26171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0751953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2900390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0673828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2978515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0751953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2900390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0830078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2900390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.26953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0087890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.5859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9052734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.099609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.095703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.099609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.51171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.48828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0419921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9755859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.0400390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.048828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3017578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.205078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2978515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5166015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.71484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.4228515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.7216796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.15625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.2685546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.9384765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.9326171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.87890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.8330078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.8212890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1025390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.791015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1806640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3662109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.9091796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.2138671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.8271484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.2783203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.599609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.71484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.71484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.544921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.767578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.541015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.544921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.32421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.2109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.658203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8525390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9345703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.91015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9658203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9619140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9658203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9619140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9658203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.15625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.89453125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.9052734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.9287109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.1767578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.76953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 277.8369140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.380859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.19921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7197265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4990234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4794921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.66015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4638671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.2685546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.0771484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.0185546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.9677734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3291015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3369140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2978515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.4599609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.322265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.318359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.330078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.326171875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5478515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.474609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0791015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9130859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.111328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3017578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.2734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.4560546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8369140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3486328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.462890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.021484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.01953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5966796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.5185546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.1337890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4794921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.0244140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.6923828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2236328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7744140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3291015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2509765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5322265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6328125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9150390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.966796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.947265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.880859375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.595703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.7275390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.1435546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.23828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.08203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.9873046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.009765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3349609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7392578125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.93359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.93359375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6884765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.9482421875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3681640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.240234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.248046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0869140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.310546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.31640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.888671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9580078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8720703125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.552734375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.3515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.15625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.2685546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.4912109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.662109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.431640625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6259765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2373046875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0146484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0146484375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.59765625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7919921875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4599609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.04296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4033203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.103515625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0673828125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.763671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.15234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8525390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.8525390625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0830078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.0791015625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.30078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.2890625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.265625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.662109375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.654296875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9658203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9619140625, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.28125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.26953125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.05078125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.0546875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.8203125, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.609375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.216796875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.671875, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.65234375, + "entries": 1979211, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 42.1201171875, + "entries": 1979211, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 48.2451171875, + "entries": 1979211, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 5307.8173828125, + "entries": 1979211, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 3303.9365234375, + "entries": 8006.000000000001, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 10246.4375, + "entries": 1979211, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 10159.8271484375, + "entries": 1979211, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 98351.615234375, + "entries": 11507913.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 11181.5927734375, + "entries": 1979211, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 11277.2958984375, + "entries": 1979211, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 43140.5517578125, + "entries": 277038.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 7940.7294921875, + "entries": 14201.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 865.9453125, + "entries": 8560.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 56537.3818359375, + "entries": 2447232.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 343351.306640625, + "entries": 7671472.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 27678.8779296875, + "entries": 1979211, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 44989.37890625, + "entries": 588964.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 36801.3583984375, + "entries": 1979211, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 958.3759765625, + "entries": 0.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 279033.6337890625, + "entries": 4225561.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 18734.3857421875, + "entries": 211538.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 745.796875, + "entries": 0.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 57698.2060546875, + "entries": 1979211, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 10186.7685546875, + "entries": 1979211, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 10463.28125, + "entries": 1979211, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 6084.87890625, + "entries": 1979211, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6184.90234375, + "entries": 1979211, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 6527.6953125, + "entries": 1979211, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6558.5810546875, + "entries": 1979211, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 6293.9384765625, + "entries": 1979211, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 59641.556640625, + "entries": 11607047.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 6719.9892578125, + "entries": 1979211, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 5113.9521484375, + "entries": 1979211, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 6796.22265625, + "entries": 1979211, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 6733.72265625, + "entries": 1979211, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 656.01953125, + "entries": 1979211, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1253.5673828125, + "entries": 1979211, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 856.7626953125, + "entries": 1979211, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 1907.5146484375, + "entries": 15719.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 22315.697265625, + "entries": 271346.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 10251.662109375, + "entries": 1979211, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 6821.490234375, + "entries": 370215.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 10887.271484375, + "entries": 5937188.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 20251.90234375, + "entries": 1979211, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 53713.1669921875, + "entries": 1417554.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 17394.513671875, + "entries": 1979211, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2766.1484375, + "entries": 1979211, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 37.4599609375, + "entries": 1979211, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 38.8203125, + "entries": 1979211, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 22931.701171875, + "entries": 1979211, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 38.8203125, + "entries": 1979211, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 4, + "allsize": 0.083984375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.083984375, + "entries": 4, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.083984375, + "entries": 4, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1289, + "allsize": 1.8955078125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.1904296875, + "entries": 1289, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.0888671875, + "entries": 1289, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2080078125, + "entries": 1289, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.203125, + "entries": 1289, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.205078125, + "entries": 1289, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.1904296875, + "entries": 1289, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.0888671875, + "entries": 1289, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2080078125, + "entries": 1289, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.203125, + "entries": 1289, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.205078125, + "entries": 1289, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30553/DisplacedJet_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30553/DisplacedJet_doc.html new file mode 100644 index 000000000..0901808fd --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30553/DisplacedJet_doc.html @@ -0,0 +1,1650 @@ + + + + Documentation for 08A2A8A8-75B5-4248-A6EF-29D7568A7859.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30553/DisplacedJet_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30553/DisplacedJet_doc.json new file mode 100644 index 000000000..a8255c72c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30553/DisplacedJet_doc.json @@ -0,0 +1,14054 @@ +{ + "filename": "08A2A8A8-75B5-4248-A6EF-29D7568A7859.root", + "filesize": 383096.8701171875, + "trees": { + "Events": { + "entries": 333873, + "allsize": 379645.5498046875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 8.4970703125, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 11.1298828125, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 908.7177734375, + "entries": 333873, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 50.8916015625, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 153.26171875, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 184.2890625, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 158.68359375, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 159.07421875, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 159.83203125, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 148.96875, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 138.71484375, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 185.83984375, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 124.64453125, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 215.5546875, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 161.18359375, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 153.66015625, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 159.4140625, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 154.4296875, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 170.94921875, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 157.765625, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 205.91796875, + "entries": 43717.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 84.42578125, + "entries": 43717.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 96.0, + "entries": 43717.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 73.19140625, + "entries": 43717.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 99.45703125, + "entries": 43717.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 88.31640625, + "entries": 43717.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 72.6484375, + "entries": 43717.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 92.59765625, + "entries": 43717.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 90.83984375, + "entries": 43717.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 89.75390625, + "entries": 43717.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 628.6455078125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 584.24609375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 510.0615234375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 630.6953125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 584.6474609375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 498.810546875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 175.3154296875, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1579.7080078125, + "entries": 1832458.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 4164.107421875, + "entries": 1832458.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 2681.443359375, + "entries": 1832458.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 4174.849609375, + "entries": 1832458.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 2915.44140625, + "entries": 1832458.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 750.3037109375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 1162.701171875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 749.9462890625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 1157.36328125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 103.5498046875, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 661.87890625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 661.0078125, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 199.6875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 199.66796875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 778.333984375, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 337.3515625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 336.646484375, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 318.3828125, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 319.5546875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 819.6171875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 561.083984375, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 829.794921875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 566.625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 962.0234375, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 784.41796875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 593.28515625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 868.046875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 615.03515625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 785.517578125, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 637.580078125, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 652.26171875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 784.099609375, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1179.248046875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1044.025390625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 907.822265625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 946.041015625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1192.607421875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1105.552734375, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 868.4296875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 1198.279296875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 677.322265625, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 681.267578125, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 694.4609375, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 768.2421875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 629.857421875, + "entries": 285913.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 251.298828125, + "entries": 285913.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 225.865234375, + "entries": 285913.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 334.521484375, + "entries": 285913.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 251.91796875, + "entries": 285913.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 285.2734375, + "entries": 285913.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 266.00390625, + "entries": 285913.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 646.265625, + "entries": 285913.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 572.71484375, + "entries": 285913.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 180.1640625, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 165.765625, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 210.23046875, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 294.46484375, + "entries": 285913.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 219.4921875, + "entries": 285913.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 167.56640625, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 171.08203125, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 180.2421875, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 171.0703125, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 176.82421875, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 187.1171875, + "entries": 285913.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 165.15234375, + "entries": 285913.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 91.5556640625, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 304.615234375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 546.2890625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 592.3984375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 544.0703125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 573.8046875, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 556.89453125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 555.62109375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 508.775390625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 531.470703125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 524.142578125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 496.169921875, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 531.3984375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 507.43359375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 527.466796875, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 495.798828125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 529.21484375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 500.00390625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 577.09375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 514.453125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 542.02734375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 596.822265625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 581.376953125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 579.849609375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 680.56640625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 539.947265625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 494.27734375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 431.427734375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 267.154296875, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 529.34765625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 588.00390625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 569.19140625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 573.65625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 604.201171875, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 590.337890625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 583.345703125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 510.609375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 600.478515625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 578.958984375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 579.447265625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 546.666015625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 676.87109375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 494.224609375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 374.4140625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 550.283203125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 548.912109375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 547.490234375, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 546.830078125, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 349.462890625, + "entries": 229929.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 155.4375, + "entries": 229929.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 205.306640625, + "entries": 229929.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 204.912109375, + "entries": 229929.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 196.150390625, + "entries": 229929.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 183.662109375, + "entries": 229929.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 315.70703125, + "entries": 229929.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 15.484375, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 31.04296875, + "entries": 2169.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 29.0234375, + "entries": 2169.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 28.9921875, + "entries": 2169.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 28.05078125, + "entries": 2169.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 30.53515625, + "entries": 2169.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 22.47265625, + "entries": 2169.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 131.9951171875, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1514.3994140625, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1478.26171875, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 1590.0595703125, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 1194.2138671875, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 963.7646484375, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 1594.7119140625, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 1291.87109375, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1128.1923828125, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 681.7626953125, + "entries": 585749.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 351.74609375, + "entries": 585749.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 386.71875, + "entries": 585749.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 360.0654296875, + "entries": 585749.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 280.9921875, + "entries": 585749.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 194.1015625, + "entries": 585749.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 268.07421875, + "entries": 585749.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 176.650390625, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 1893.15234375, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 3891.765625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 3607.71484375, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 3279.83203125, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 3391.171875, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 4819.03515625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 3972.31640625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 4426.78515625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 4156.22265625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 816.00390625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 3109.640625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 2909.8046875, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 5794.52734375, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 927.7578125, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 927.83203125, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 4465.4921875, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 636.63671875, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 3663.48828125, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 3321.79296875, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 3228.234375, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 5693.8671875, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 4406.7109375, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 4225.42578125, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 3870.4140625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 3570.25390625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 3615.49609375, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 2941.09765625, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 3602.73046875, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 2932.26171875, + "entries": 2571885.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 626.23828125, + "entries": 2571885.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 377.89453125, + "entries": 2571885.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 399.015625, + "entries": 2571885.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 486.28515625, + "entries": 2571885.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 495.86328125, + "entries": 2571885.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 486.4296875, + "entries": 2571885.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 360.88671875, + "entries": 2571885.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 600.10546875, + "entries": 2571885.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 490.7734375, + "entries": 2571885.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 933.2578125, + "entries": 2571885.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1895.4130859375, + "entries": 2571885.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 373.974609375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 359.2451171875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 364.15234375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 368.1865234375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 96.6640625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 37.2841796875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 100.5927734375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 96.0537109375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 97.5498046875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 419.3388671875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 425.052734375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 87.1640625, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 804.23046875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 231.9140625, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 543.44921875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 547.6875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 389.39453125, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 560.625, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 382.21484375, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 535.078125, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 757.0546875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 413.796875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 588.36328125, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 375.23828125, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 534.08984375, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 704.1640625, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 592.625, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 585.71875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 792.77734375, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 718.89453125, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 506.796875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 461.3046875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 428.4453125, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 732.46875, + "entries": 183128.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 185.67578125, + "entries": 183128.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 173.0859375, + "entries": 183128.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 185.51953125, + "entries": 183128.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 154.25, + "entries": 183128.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 175.28125, + "entries": 183128.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 654.267578125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 655.166015625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 435.0068359375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 552.9560546875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 434.8896484375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 757.4111328125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 1152.1015625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 623.126953125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 507.8779296875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 514.927734375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 51.4267578125, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 221.25, + "entries": 58802.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 234.70703125, + "entries": 58802.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 234.87109375, + "entries": 58802.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 85.24609375, + "entries": 58802.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 85.54296875, + "entries": 58802.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 201.68359375, + "entries": 58802.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 85.22265625, + "entries": 58802.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 78.9677734375, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 429.93359375, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 291.44140625, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 431.86328125, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 435.65625, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 300.44921875, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 450.40625, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 413.39453125, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 305.59765625, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 345.51953125, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 150.48828125, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 559.18359375, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 487.53515625, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 569.31640625, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 531.48046875, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 584.96484375, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 447.1171875, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 592.23046875, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 312.9765625, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 403.55078125, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 407.43359375, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 221.8125, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 301.7734375, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 144.99609375, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 324.79296875, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 347.0703125, + "entries": 135412.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 149.95703125, + "entries": 135412.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 187.40234375, + "entries": 135412.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 175.11328125, + "entries": 135412.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 203.32421875, + "entries": 135412.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 150.13671875, + "entries": 135412.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 133.16015625, + "entries": 135412.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 128.71875, + "entries": 135412.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 138.2890625, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 130.92578125, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 126.125, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 138.62890625, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 138.421875, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 139.01953125, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 134.0078125, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 177.1171875, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 138.3046875, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 136.1875, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 130.3984375, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 147.73828125, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 130.79296875, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 115.65625, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 114.75390625, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 145.40625, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 139.24609375, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 137.8515625, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 131.5078125, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 131.65234375, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 138.43359375, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 138.8984375, + "entries": 135412.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 120.6376953125, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 836.83984375, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 837.515625, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 224.4296875, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 224.0, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 525.90234375, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 785.94921875, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 1194.30078125, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 803.34765625, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 684.2421875, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 774.37890625, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 818.1015625, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1705.125, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 1512.01953125, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 1192.33984375, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 1681.53125, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 904.59765625, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 932.828125, + "entries": 424387.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 223.7578125, + "entries": 424387.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 257.29296875, + "entries": 424387.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 260.671875, + "entries": 424387.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 313.87109375, + "entries": 424387.00000000006, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 398.3515625, + "entries": 424387.00000000006, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 223.8046875, + "entries": 424387.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 626.4296875, + "entries": 424387.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 239.4765625, + "entries": 424387.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 246.04296875, + "entries": 424387.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 241.26953125, + "entries": 424387.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 201.67578125, + "entries": 424387.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 207.89453125, + "entries": 424387.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 240.95703125, + "entries": 424387.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 185.35546875, + "entries": 424387.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 80.17578125, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 535.400390625, + "entries": 188160.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 598.576171875, + "entries": 188160.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 138.80859375, + "entries": 188160.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 138.986328125, + "entries": 188160.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 168.76953125, + "entries": 188160.99999999997, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 172.873046875, + "entries": 188160.99999999997, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 181.490234375, + "entries": 188160.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 138.96484375, + "entries": 188160.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 755.330078125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 627.4111328125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 627.3310546875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 627.2197265625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 627.6123046875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 627.1533203125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 627.5927734375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 1157.9892578125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 590.76171875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 590.681640625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 589.59375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 590.666015625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 590.625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 589.736328125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 543.9453125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 629.64453125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 585.0380859375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 507.197265625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 627.0166015625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 590.34375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 547.6240234375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 1045.4375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 1068.8671875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 1089.5703125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 1100.6064453125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 1078.7724609375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 27.607421875, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 3404.7333984375, + "entries": 1968095.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 3351.1982421875, + "entries": 1968095.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 4003.08984375, + "entries": 1968095.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 1138.9248046875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 1143.5087890625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 1142.1171875, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 1147.59765625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 140.953125, + "entries": 333873, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 212.8232421875, + "entries": 333873, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 165.6162109375, + "entries": 333873, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 80.255859375, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 531.9453125, + "entries": 188160.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 516.734375, + "entries": 188160.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 181.494140625, + "entries": 188160.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 80.9580078125, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 596.541015625, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 604.896484375, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 801.6171875, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 693.4970703125, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 542.5791015625, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 537.5712890625, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 792.42578125, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 649.8583984375, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 423.943359375, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 666.0283203125, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 638.5751953125, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 608.0478515625, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 582.5361328125, + "entries": 299611.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 87.279296875, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 489.95703125, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 569.19921875, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 649.42578125, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 606.59765625, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 494.17578125, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 494.421875, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 492.6875, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 457.4140625, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 399.46484375, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 604.953125, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 385.4609375, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 812.62890625, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 507.00390625, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 426.44921875, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 508.22265625, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 301.37890625, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 501.171875, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 458.93359375, + "entries": 192797.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 193.11328125, + "entries": 192797.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 237.04296875, + "entries": 192797.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 252.390625, + "entries": 192797.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 150.046875, + "entries": 192797.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 149.2265625, + "entries": 192797.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 173.1484375, + "entries": 192797.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 229.59765625, + "entries": 192797.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 224.125, + "entries": 192797.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 154.80859375, + "entries": 192797.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 626.8662109375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 593.095703125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 532.7666015625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 192.150390625, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 5918.54296875, + "entries": 3133844.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 5423.4267578125, + "entries": 3133844.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 5360.4345703125, + "entries": 3133844.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 3668.525390625, + "entries": 3133844.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 356.57421875, + "entries": 3133844.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 4498.271484375, + "entries": 3133844.9999999995, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 803.921875, + "entries": 3133844.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 668.9873046875, + "entries": 3133844.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 373.458984375, + "entries": 3133844.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 1145.078125, + "entries": 3133844.9999999995, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 8.947265625, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 1908.0771484375, + "entries": 991891.9999999999, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 439.8173828125, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 379.259765625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 330.978515625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 898.583984375, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 367.5947265625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 494.916015625, + "entries": 333873, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 219.1611328125, + "entries": 333873, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 213.3955078125, + "entries": 333873, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 119.1650390625, + "entries": 333873, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 945.005859375, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 910.296875, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 938.69921875, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 912.908203125, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 571.837890625, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 374.513671875, + "entries": 380034.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 163.2109375, + "entries": 285913.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 472.3505859375, + "entries": 2571885.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 136.5703125, + "entries": 135412.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 183.01171875, + "entries": 424387.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 141.1015625, + "entries": 192797.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 827.091796875, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 1108.92578125, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 901.130859375, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 674.228515625, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 1105.8203125, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 923.873046875, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 1013.27734375, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 1007.24609375, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 1147.83203125, + "entries": 380034.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 276.6953125, + "entries": 380034.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.5966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.7568359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.037109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.556640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.556640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.6767578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.556640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.5166015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.7568359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.0771484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.037109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.1171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.5751953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.2177734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6748046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.9873046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.0849609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.0029296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.3623046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.3505859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.6904296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.1865234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.0478515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.2666015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.6455078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.7314453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.8369140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.9853515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.1103515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.27734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.27734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.3173828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.3671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.599609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.455078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.708984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.7783203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.8837890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.0205078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.3271484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.4658203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.3173828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.6875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.740234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.28515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.55078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.25, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.474609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.8466796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.775390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.1787109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.638671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.6845703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.724609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.28125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.4775390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.732421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.326171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.013671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.083984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.166015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.166015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.685546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.1630859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.6044921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.3466796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.3310546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.6201171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.482421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.763671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.841796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.919921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.322265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.220703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.177734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.884765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.9970703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.6767578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.6767578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4677734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.6591796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.4365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.7646484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.8271484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.0146484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.0537109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.3427734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.4443359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.0068359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.0751953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.5283203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.4189453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.634765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.8984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.736328125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.9169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.9169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.5400390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.4775390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.333984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.2470703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.7685546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.7568359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.064453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.5615234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.5576171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.615234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.587890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.513671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.521484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.9072265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.044921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.8828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.5966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.8388671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.5966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 12.5185546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.1884765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.3681640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.5087890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.78125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.7373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.2138671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.6630859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.8193359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.556640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.0361328125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.5654296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.4169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.8779296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.8046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.7021484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.1865234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.8662109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.9599609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.3583984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.5576171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.5537109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.5693359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.2568359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.7216796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.1708984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.5693359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.2998046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.583984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.779296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.4140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.408203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.39453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.39453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.673828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.6796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.138671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.58984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.021484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.8046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.345703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.95703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.724609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.34765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.166015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.12109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.970703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.6494140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.95703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.4580078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.0556640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.6689453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.8095703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.0205078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.8447265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.10546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.9169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.8515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.0771484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2490234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.0546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.5966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.5966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.6650390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.5107421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.7392578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.1748046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 14.0908203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.5888671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 16.5908203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.9794921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.8330078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.2255859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.0751953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.587890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.8935546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 13.7705078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.849609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.404296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.7353515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.0771484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.7412109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.8623046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 11.849609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.8916015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.0595703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.6630859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.7177734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.9833984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.736328125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 10.0888671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.1044921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.6767578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 8.3173828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 7.9169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 10.330078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 12.2822265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 15.9189453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 26.8203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 15.9892578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 14.15625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.8408203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.091796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.4013671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.6689453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.8310546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 7.9970703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 7.8232421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 7.796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.037109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 7.94921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.6611328125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.0712890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 9.05078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 7.916015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 7.99609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.94140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.59765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.3173828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 8.6298828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 16.7001953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 7.5166015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 10.609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 12.5224609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 16.1591796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 27.060546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 16.2294921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 14.396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 9.0810546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.33203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.6416015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.9091796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 22.0712890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.3818359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.0634765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.037109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.27734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.189453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.9013671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.3115234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 9.291015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.15625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.837890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.4375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.4375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.5576171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 8.8701171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 17.0146484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.3046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.55078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.7138671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.3544921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.673828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.2880859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.0419921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.638671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.6884765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.5009765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.1650390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.638671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.599609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.22265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9326171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.908203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8193359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7021484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0087890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.6796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.8857421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.2890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.8818359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.96875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.5810546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.2529296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.419921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.287109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.255859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.5966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6044921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.81640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.3525390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.0458984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.158203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4892578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.888671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0048828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9248046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0048828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9248046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.037109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.037109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.5576171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.201171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.01953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.869140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.310546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.208984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.150390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1513671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.056640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.6650390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.8896484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.052734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.212890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.044921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.8701171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.017578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.8427734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.990234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.0498046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.4990234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3701171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.1904296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.1240234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.7998046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.7412109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.6279296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.3359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.08203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.05859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.08984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.84765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.8740234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.451171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.4326171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.396484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.94921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3056640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3642578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.6298828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.58203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.6298828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.58203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5166015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2978515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.744140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3642578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9892578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.49609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1884765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1611328125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5966796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0419921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.537109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2451171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.501953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2255859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7568359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.888671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.888671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0771484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.212890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.5625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.2314453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.7626953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0087890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9970703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.6015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.5, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.587890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7001953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9248046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.455078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6318359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.740234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.96875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.3623046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7919921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6572265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.44921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7998046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.33984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6064453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.025390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.3525390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.630859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.427734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.48046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.537109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9267578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7275390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7958984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.439453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.3955078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.048828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.97265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9814453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.8994140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.349609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.236328125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6884765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.205078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.8330078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.095703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.349609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.7666015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6494140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.916015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.923828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.544921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.353515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.228515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.048828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.533203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0771484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0771484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1572265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1572265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.95703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.95703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.95703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.66796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8916015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1572265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3251953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.9306640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.9501953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.4541015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.2275390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5400390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5439453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5673828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.880859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.955078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.888671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.302734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.318359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.076171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.357421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.720703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.806640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.755859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0029296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1318359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6787109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.5693359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.4013671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.6630859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.98828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1142578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1142578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3564453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2744140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1591796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.724609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4560546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.87890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.28515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.0185546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.447265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.20703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5478515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7314453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8056640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 14.1533203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.6923828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.3369140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.8251953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.0595703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.9267578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.1376953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.541015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.0693359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.6240234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.9990234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.4169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.9443359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.037109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.97265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1142578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.841796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.302734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1474609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.408203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.6826171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.5068359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.8671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.8505859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.6513671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.4755859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.2177734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.9794921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1279296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.056640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.189453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.345703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.5517578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2978515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.05078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.884765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.0390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.677734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7646484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.8154296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.8818359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.0419921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.30859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.8779296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7177734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.37109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.53125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9091796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7763671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9521484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1357421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.0068359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2333984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2568359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1279296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.25, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.08984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7568359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.80078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6455078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.681640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.693359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.708984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.99609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.16015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.64453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.4150390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.4384765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.1435546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.134765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1943359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.376953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.0263671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7529296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.33984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.4169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.0205078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.32421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1572265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2099609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.0244140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.7529296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6904296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.8505859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.548828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0771484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.3173828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.4033203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.3369140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4423828125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.3505859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.009765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.955078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.65625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.75390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.361328125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.208984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.365234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.376953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.54296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.59375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.556640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.576171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.580078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.615234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.728515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.830078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8427734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.2880859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.41796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2451171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2451171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2724609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2958984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.3896484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.5458984375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.66015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.8125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.3212890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.8994140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.5185546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.99609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9521484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.060546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2412109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1376953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0009765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.68359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.9306640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.8642578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.3251953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.8681640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.8681640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.4130859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1748046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.6494140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.212890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.482421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.994140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 16.962890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.0068359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.884765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.2451171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.6025390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.705078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3466796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.62109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.4541015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.2802734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.1123046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.271484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.814453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1416015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.9033203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.9287109375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.5791015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.3974609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.2607421875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.09765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.7021484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.9990234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.7255859375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.3701171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.0419921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.94921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1279296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.302734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.650390625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.080078125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.236328125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8076171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1689453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.1484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.01953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.3564453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.408203125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7001953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4052734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.44921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.48046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 12.1865234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.7001953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.3779296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.181640625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.251953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.3974609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 10.2138671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 9.1826171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.740234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 11.92578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 13.103515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.27734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.27734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.27734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.0068359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.529296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.03515625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.5234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8564453125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6962890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2451171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2646484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2373046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.2490234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.4765625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.560546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.716796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.7568359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6767578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.876953125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8369140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.8369140625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6767578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6767578125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9970703125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5166015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.63671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.9169921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.677734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.8779296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.197265625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.27734375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6279296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.6044921875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.4599609375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.4521484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.78125, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.5, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.48046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.771484375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.666015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.587890625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.576171875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.6943359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.4873046875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.54296875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.66015625, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.671875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 7.796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.0546875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.0234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 6.0234375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.18359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.1796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.1796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.18359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.1796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.18359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.18359375, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 6.1796875, + "entries": 333873, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 8.4970703125, + "entries": 333873, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 11.1298828125, + "entries": 333873, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 908.7177734375, + "entries": 333873, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 3630.3056640625, + "entries": 43717.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 1722.953125, + "entries": 333873, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 1714.1533203125, + "entries": 333873, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 15690.865234375, + "entries": 1832458.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 1913.0048828125, + "entries": 333873, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 1907.3095703125, + "entries": 333873, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 30554.8505859375, + "entries": 285913.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 26926.0283203125, + "entries": 229929.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 185.6015625, + "entries": 2169.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 13410.9306640625, + "entries": 585749.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 105898.62890625, + "entries": 2571885.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 2738.0947265625, + "entries": 333873, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 13147.30859375, + "entries": 183128.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 6287.7314453125, + "entries": 333873, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 2510.3798828125, + "entries": 58802.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 14133.6982421875, + "entries": 135412.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 19807.9501953125, + "entries": 424387.00000000006, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 2154.044921875, + "entries": 188160.99999999997, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 9763.6494140625, + "entries": 333873, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 1721.8798828125, + "entries": 333873, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 1764.984375, + "entries": 333873, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 1045.4375, + "entries": 333873, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 1068.8671875, + "entries": 333873, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 1089.5703125, + "entries": 333873, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 1100.6064453125, + "entries": 333873, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 1078.7724609375, + "entries": 333873, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 10786.62890625, + "entries": 1968095.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 1138.9248046875, + "entries": 333873, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 1143.5087890625, + "entries": 333873, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 1142.1171875, + "entries": 333873, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 1147.59765625, + "entries": 333873, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 140.953125, + "entries": 333873, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 212.8232421875, + "entries": 333873, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 165.6162109375, + "entries": 333873, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 8219.0751953125, + "entries": 299611.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 11151.427734375, + "entries": 192797.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 1752.728515625, + "entries": 333873, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 28409.3720703125, + "entries": 3133844.9999999995, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 1917.0244140625, + "entries": 991891.9999999999, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 3343.70703125, + "entries": 333873, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 13758.5478515625, + "entries": 380034.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 5345.6259765625, + "entries": 333873, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_DoubleTau70er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT55_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_ETT75_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 589.98828125, + "entries": 333873, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 7.5166015625, + "entries": 333873, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 7.796875, + "entries": 333873, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 5360.8203125, + "entries": 333873, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu24_eta2p1", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu24_eta2p1", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 7.796875, + "entries": 333873, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 12, + "allsize": 0.115234375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.115234375, + "entries": 12, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.115234375, + "entries": 12, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 922, + "allsize": 1.4619140625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2060546875, + "entries": 922, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.6591796875, + "entries": 922, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2001953125, + "entries": 922, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.1953125, + "entries": 922, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.201171875, + "entries": 922, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2060546875, + "entries": 922, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.6591796875, + "entries": 922, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2001953125, + "entries": 922, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.1953125, + "entries": 922, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.201171875, + "entries": 922, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30554/DoubleEG_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30554/DoubleEG_doc.html new file mode 100644 index 000000000..0ce81df6f --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30554/DoubleEG_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for 2AD46B56-E1CA-CD44-B30D-C57FE1C35D15.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30554/DoubleEG_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30554/DoubleEG_doc.json new file mode 100644 index 000000000..75a6e7eb7 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30554/DoubleEG_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "2AD46B56-E1CA-CD44-B30D-C57FE1C35D15.root", + "filesize": 818576.740234375, + "trees": { + "Events": { + "entries": 843234, + "allsize": 813303.66796875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 22.55859375, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 25.0625, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 2262.66796875, + "entries": 843234, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 110.046875, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 291.9736328125, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 342.9453125, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 301.3291015625, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 301.7548828125, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 284.521484375, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 267.1279296875, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 257.6572265625, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 343.91796875, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 227.4990234375, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 384.6884765625, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 302.4228515625, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 297.4970703125, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 298.0517578125, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 288.5791015625, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 320.158203125, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 307.974609375, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 394.228515625, + "entries": 72484.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 169.9423828125, + "entries": 72484.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 185.853515625, + "entries": 72484.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 149.4541015625, + "entries": 72484.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 196.064453125, + "entries": 72484.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 178.287109375, + "entries": 72484.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 147.6982421875, + "entries": 72484.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 188.5537109375, + "entries": 72484.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 186.9716796875, + "entries": 72484.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 187.0615234375, + "entries": 72484.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 1589.8828125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 1485.0625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1322.65234375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 1596.125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 1486.3671875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 1294.43359375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 445.328125, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 3891.650390625, + "entries": 4489942.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 10313.28125, + "entries": 4489942.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 6681.4921875, + "entries": 4489942.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 10404.98046875, + "entries": 4489942.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 7244.5625, + "entries": 4489942.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 1896.171875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 2925.21875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 1923.42578125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 2928.11328125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 282.9609375, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 2225.81640625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 2224.6640625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 566.3671875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 566.62890625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2617.236328125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1508.66796875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1425.951171875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1245.4296875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 1229.7421875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2744.046875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1822.439453125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2781.427734375, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1844.921875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 3036.40625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2676.0390625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1930.38671875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 2938.3515625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1888.890625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2618.677734375, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2141.544921875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2223.54296875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 2626.416015625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3823.044921875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3367.646484375, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 3242.611328125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 3427.587890625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 3943.205078125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3651.251953125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 2932.80078125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 4163.763671875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 2179.509765625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 2269.056640625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 2286.56640625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 2546.97265625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2393.287109375, + "entries": 1035848.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 743.619140625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 802.251953125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 920.513671875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 745.30078125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 875.82421875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 795.5078125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 2105.29296875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1815.78125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 526.5244140625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 556.1875, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 632.2861328125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 905.2685546875, + "entries": 1035848.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 651.5205078125, + "entries": 1035848.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 563.427734375, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 573.474609375, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 605.7255859375, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 570.76953125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 584.2265625, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 620.8095703125, + "entries": 1035848.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 482.6689453125, + "entries": 1035848.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 145.10546875, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 331.7880859375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 504.166015625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 542.3515625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 504.375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 527.75, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 515.091796875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 520.5859375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 460.9697265625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 490.1103515625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 482.0732421875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 455.3115234375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 490.04296875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 471.96875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 482.7353515625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 452.4755859375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 489.265625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 467.06640625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 526.677734375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 485.68359375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 503.595703125, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 544.8056640625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 534.3720703125, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 534.4658203125, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 597.91015625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 499.4013671875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 462.791015625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 411.1865234375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 290.1904296875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 492.041015625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 538.083984375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 522.478515625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 527.708984375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 551.0849609375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 540.1865234375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 536.7958984375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 484.58984375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 548.9384765625, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 534.6142578125, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 535.2158203125, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 508.1240234375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 596.88671875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 467.6767578125, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 374.927734375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 506.0224609375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 505.5263671875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 504.0810546875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 503.4404296875, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 444.8583984375, + "entries": 159362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 205.564453125, + "entries": 159362.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 250.6416015625, + "entries": 159362.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 250.0517578125, + "entries": 159362.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 250.8408203125, + "entries": 159362.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 214.4228515625, + "entries": 159362.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 310.880859375, + "entries": 159362.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 33.265625, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 65.2802734375, + "entries": 2901.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 61.9384765625, + "entries": 2901.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 61.9423828125, + "entries": 2901.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 60.958984375, + "entries": 2901.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 64.90625, + "entries": 2901.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 53.5322265625, + "entries": 2901.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 310.14453125, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2959.0390625, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2909.1005859375, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 3129.0625, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 2325.626953125, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1870.2685546875, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 3142.55859375, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 2564.0263671875, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2114.9384765625, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1300.9541015625, + "entries": 1149726.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 735.1552734375, + "entries": 1149726.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 738.4912109375, + "entries": 1149726.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 750.955078125, + "entries": 1149726.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 614.66015625, + "entries": 1149726.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 454.7783203125, + "entries": 1149726.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 546.259765625, + "entries": 1149726.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 423.71875, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 3591.3984375, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 6987.2353515625, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 6473.3173828125, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 5916.1162109375, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 6084.0146484375, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 8914.8837890625, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 7348.0263671875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 8216.8779296875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 7793.650390625, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 2023.0810546875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 5704.9453125, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 5648.6181640625, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 10761.673828125, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 1696.814453125, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 1696.189453125, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 8232.9140625, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 1289.8642578125, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 6838.7451171875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 6313.873046875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 5887.0322265625, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 10606.966796875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 8198.998046875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 8245.0, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 6314.7216796875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 6739.8759765625, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 6784.16015625, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 5591.3037109375, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 6747.17578125, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 5588.9794921875, + "entries": 4621675.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 1557.1533203125, + "entries": 4621675.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 957.3291015625, + "entries": 4621675.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 849.87890625, + "entries": 4621675.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 1003.509765625, + "entries": 4621675.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1279.181640625, + "entries": 4621675.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 1004.4033203125, + "entries": 4621675.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 829.6923828125, + "entries": 4621675.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 1466.2802734375, + "entries": 4621675.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 1048.5224609375, + "entries": 4621675.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 2009.2080078125, + "entries": 4621675.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 3421.6220703125, + "entries": 4621675.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 771.50390625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 755.21875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 765.36328125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 771.5703125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 150.48046875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 57.60546875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 156.6796875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 149.60546875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 151.80078125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 846.60546875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 855.8125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 254.53515625, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 2720.90234375, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 653.044921875, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1795.7734375, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1810.876953125, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1275.7890625, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1856.3828125, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1247.630859375, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1787.095703125, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 2627.13671875, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1333.443359375, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 1957.705078125, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1153.751953125, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 1782.1171875, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2180.10546875, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1794.8671875, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 1943.482421875, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 2712.8125, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 2393.99609375, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 1713.0625, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1522.0234375, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1420.400390625, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 2537.640625, + "entries": 640111.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 561.671875, + "entries": 640111.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 526.8828125, + "entries": 640111.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 561.564453125, + "entries": 640111.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 449.28125, + "entries": 640111.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 533.22265625, + "entries": 640111.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 1654.734375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 1654.80859375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 1084.50390625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 1364.16015625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 1084.0546875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 1917.625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 2921.0859375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 1577.3125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 1312.51953125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 1308.1015625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 101.6875, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 436.900390625, + "entries": 113351.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 464.0400390625, + "entries": 113351.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 464.0751953125, + "entries": 113351.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 176.0615234375, + "entries": 113351.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 176.21875, + "entries": 113351.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 399.5439453125, + "entries": 113351.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 175.375, + "entries": 113351.00000000001, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 156.921875, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 657.912109375, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 461.0576171875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 661.5390625, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 666.5576171875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 483.39453125, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 680.744140625, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 632.8173828125, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 456.5302734375, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 540.3671875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 271.9853515625, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 759.9072265625, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 633.3720703125, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 796.2763671875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 718.6591796875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 830.1865234375, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 678.419921875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 851.2646484375, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 491.67578125, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 611.017578125, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 633.28125, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 372.294921875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 460.5322265625, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 263.3544921875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 528.5986328125, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 562.2841796875, + "entries": 179899.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 271.7177734375, + "entries": 179899.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 314.9130859375, + "entries": 179899.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 307.56640625, + "entries": 179899.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 347.1943359375, + "entries": 179899.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 271.96875, + "entries": 179899.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 248.974609375, + "entries": 179899.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 237.9501953125, + "entries": 179899.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 252.6962890625, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 246.7607421875, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 240.4287109375, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 253.9189453125, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 254.1142578125, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 254.1259765625, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 247.8359375, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 300.5693359375, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 253.853515625, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 251.7353515625, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 243.8701171875, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 277.421875, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 248.8271484375, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 220.28515625, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 219.7177734375, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 276.076171875, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 262.2802734375, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 252.3154296875, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 244.2421875, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 244.072265625, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 257.482421875, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 254.1279296875, + "entries": 179899.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 237.87890625, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3348.421875, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 3348.259765625, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 683.64453125, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 682.205078125, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2095.056640625, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 3083.068359375, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 4906.375, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 2977.9453125, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 2666.3896484375, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 3512.990234375, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 3622.9755859375, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 6895.8525390625, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 6106.8681640625, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 4860.02734375, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 7034.0751953125, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3440.9384765625, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3662.068359375, + "entries": 1859048.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 681.0673828125, + "entries": 1859048.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 1024.8935546875, + "entries": 1859048.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 1032.45703125, + "entries": 1859048.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1088.046875, + "entries": 1859048.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1187.9462890625, + "entries": 1859048.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 681.076171875, + "entries": 1859048.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 2259.052734375, + "entries": 1859048.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 799.1552734375, + "entries": 1859048.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 799.818359375, + "entries": 1859048.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 789.310546875, + "entries": 1859048.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 734.6181640625, + "entries": 1859048.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 755.1103515625, + "entries": 1859048.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 809.994140625, + "entries": 1859048.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 546.5927734375, + "entries": 1859048.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 161.28125, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1122.4873046875, + "entries": 388633.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1252.9794921875, + "entries": 388633.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 297.6015625, + "entries": 388633.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 298.2197265625, + "entries": 388633.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 362.00390625, + "entries": 388633.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 372.6826171875, + "entries": 388633.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 388.2978515625, + "entries": 388633.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 298.142578125, + "entries": 388633.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 1913.76953125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 1588.29296875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 1588.08203125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 1587.34765625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 1588.58203125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 1587.578125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 1589.84765625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 2933.0078125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 1499.875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 1499.6640625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 1500.66796875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 1499.1484375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 1497.80078125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 1499.7109375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1438.6640625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 1591.859375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 1485.3359375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1312.25390625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 1586.3125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 1503.86328125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 1433.1015625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 2638.94921875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 2670.2734375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 2762.9765625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 2765.80078125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 2705.828125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 101.72265625, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 8180.8271484375, + "entries": 4906614.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 8053.5810546875, + "entries": 4906614.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 9272.9375, + "entries": 4906614.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 2891.25390625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 2715.78515625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 2900.20703125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 2888.3203125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 341.4453125, + "entries": 843234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 536.62890625, + "entries": 843234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 397.79296875, + "entries": 843234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 161.4921875, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1115.640625, + "entries": 388633.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1081.13671875, + "entries": 388633.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 388.3154296875, + "entries": 388633.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 122.7890625, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 480.478515625, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 486.501953125, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 611.8671875, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 560.5771484375, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 445.8310546875, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 449.4677734375, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 608.765625, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 530.9501953125, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 366.900390625, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 528.7099609375, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 507.6591796875, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 488.3935546875, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 473.2451171875, + "entries": 187917.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 218.421875, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1137.921875, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1401.4404296875, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1589.10546875, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1507.6865234375, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1242.51953125, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1248.37890625, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1113.0751953125, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1023.482421875, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 895.90625, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1497.1044921875, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 791.392578125, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1996.85546875, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1251.28125, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1257.8134765625, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1227.1474609375, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1007.921875, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1171.265625, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1039.4765625, + "entries": 474392.99999999994, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 482.7265625, + "entries": 474392.99999999994, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 569.3447265625, + "entries": 474392.99999999994, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 570.33984375, + "entries": 474392.99999999994, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 373.5009765625, + "entries": 474392.99999999994, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 368.982421875, + "entries": 474392.99999999994, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 420.5947265625, + "entries": 474392.99999999994, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 595.099609375, + "entries": 474392.99999999994, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 603.43359375, + "entries": 474392.99999999994, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 460.5400390625, + "entries": 474392.99999999994, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 1583.87890625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 1511.328125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 1367.84765625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 452.69140625, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 6556.21484375, + "entries": 3035643.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 6280.12109375, + "entries": 3035643.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 6218.55859375, + "entries": 3035643.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 4095.328125, + "entries": 3035643.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 735.94140625, + "entries": 3035643.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 4112.66796875, + "entries": 3035643.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 1313.625, + "entries": 3035643.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 1322.69921875, + "entries": 3035643.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 748.8046875, + "entries": 3035643.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 1894.6484375, + "entries": 3035643.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 23.359375, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 4622.626953125, + "entries": 2500294.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 1136.67578125, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 999.33984375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 880.8046875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 2266.15234375, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 946.04296875, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 1289.25390625, + "entries": 843234, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 550.86328125, + "entries": 843234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 538.921875, + "entries": 843234, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 236.609375, + "entries": 843234, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 1370.0576171875, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 1316.79296875, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 1364.34765625, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 1321.4462890625, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 891.1650390625, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 599.3955078125, + "entries": 513743.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 467.55078125, + "entries": 1035848.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1178.2431640625, + "entries": 4621675.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 252.33203125, + "entries": 179899.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 529.755859375, + "entries": 1859048.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 354.8759765625, + "entries": 474392.99999999994, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 1224.1240234375, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 1611.1171875, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 1308.3935546875, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 986.1318359375, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 1602.26953125, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 1339.0126953125, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 1470.126953125, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 1462.845703125, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 1651.255859375, + "entries": 513743.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 472.84375, + "entries": 513743.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.53125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.00390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.00390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.00390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.8984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.79296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.39453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.80859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.19140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.9375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.76171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.8125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.73828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.51953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.35546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.01953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.7734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.90625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.59375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 143.5078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.8671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.55078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.73046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.8828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.40234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.17578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.05859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.76953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.14453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.21875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.41796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.5703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.79296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.1953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.66015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.56640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.58984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.9765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.7265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.78125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.71484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.72265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 142.359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.41015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.9453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.58203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.73046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.64453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.23828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.08984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.87109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.00390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.58203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.1640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.58203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.58203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.58203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.93359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 19.8671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.33984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.86328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.15234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.1171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.58203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.30078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.7265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.25390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.38671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.1953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.89453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.23828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.44140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.1484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.34375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.19140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.94140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.1796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.0078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.68359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.66015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.46875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.96875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.73828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.58984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.58203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.30078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.9296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.31640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 33.8125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.25390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.2109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.14453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.4765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.81640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.39453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.96484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.00390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.4375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.68359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.4296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.09375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.04296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.29296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.1015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.61328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.4765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.38671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.1484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.43359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.2890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 142.65234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.8828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.0859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.75390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.66015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 32.78125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 31.87109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.7890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.19140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.7578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.0, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.0703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.53125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.90625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.11328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.03515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.53125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.34375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.05859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.7734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.17578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.91015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.1875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.9140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.4921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.62890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.80859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.94140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.55078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.4296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.68359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.9296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 27.16015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.99609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 29.6328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.76171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 28.4296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.0390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.7734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.59375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.29296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.95703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.63671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.37890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.80078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.8671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.46875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 30.05078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.16796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.5859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.91796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.85546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.82421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.0, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.7578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.20703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 22.01171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 20.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.04296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.1171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.34765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 34.765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 22.9140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 22.03515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 22.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.1015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.3984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 20.6015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 20.63671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 20.6953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 22.859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 22.30859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 20.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 23.2421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 22.74609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 21.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 22.0078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 22.48828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.1015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 19.8984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.67578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 22.1796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.75, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.0078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 40.98046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 35.3984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 23.546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 22.66796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 23.53515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 22.03125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 23.4921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.9296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 22.94140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 21.53515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 23.37890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 22.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 22.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 22.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 23.12109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.63671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.53515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.0625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.36328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.3125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.1171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.45703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.8984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.84375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.16015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.73046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.5390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.9765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.89453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.57421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.01171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.5078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.71875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.95703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.97265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.8984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.9140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.30859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.33984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.7421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.73046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.68359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.65625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.6796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.91796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.03515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.63671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.3671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.44140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.1640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.96875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.1796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.28125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.4921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.27734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.4296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.13671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.7421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.53515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.83984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.8359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.3828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.29296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.93359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.05859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.45703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.46484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.7578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.82421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.9296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.0, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.34765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.54296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 34.234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.89453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.6015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.5234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.1328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.87109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.82421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.4609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.72265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.2890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.1796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.27734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.16796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.8984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.79296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.09765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.44921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.30859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.37890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.65625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.62109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.5234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.58984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.87109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.53515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.83203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.53125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.8046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.3828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.66015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.6328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.48046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.53125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.81640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.41015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.8125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.83984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.4453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.0234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.33984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.56640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.13671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.44921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.0625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.55859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.5546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.55078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.3515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.7890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.66796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.90625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.8125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.7421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.89453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.58203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.55859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.0234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.79296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.3359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.55078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.62890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.8359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.8203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.89453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.0390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.40234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.08203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.00390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.69921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.2890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.3984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.56640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.15625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.87109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.19921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.65234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.80078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.8515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.98046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.5859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.5859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.05859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.05859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.05859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.22265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.22265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.26171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.4453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.5859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.6796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.24609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.13671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.90625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.9296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.9765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.21875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.75390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.16015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.90625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.43359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.49609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.45703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.69921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.76171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.07421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.01953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.4140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.0625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.19921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.19921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.30859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.40234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.96875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.30859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.7109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.85546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.1953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.0546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.03125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.41796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.56640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.25, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.5625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.75390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.77734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.0234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.8828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.04296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.23046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.71875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.7421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.46484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.65625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.39453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.2421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.50390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.5234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.87890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.62890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.9453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.6953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.8828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.5, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.14453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.75390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.77734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.79296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.8046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.97265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.15234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.13671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.20703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.8125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.69921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.5546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.8984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.95703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.66796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.78515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.98828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.53515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.6484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.0, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.01171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.08984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.21875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.5703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.6171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.08203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.0234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.13671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.4921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.49609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.6875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.3125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.3984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.6484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.1953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.16796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.39453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.9765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.05859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.08984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.0234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.4609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.27734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.96484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.88671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.92578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.33984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.81640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.0703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.63671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.1640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 30.0, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.65625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.8515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.5078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.61328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.06640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.29296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.74609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.2265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.67578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.36328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.75, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.41796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.3828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.7734375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.40234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.68359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.78515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.96875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.3046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.48046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.82421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.5546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.43359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.4765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.09765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.78515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.31640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.59765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.09765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.4375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.93359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.1796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.64453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.6171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.36328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.04296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.80859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.62109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.74609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.1171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.26953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.3046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.80078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.85546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.73828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.46484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.9765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 27.3828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.46875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.18359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.97265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.34765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.81640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.9921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.03515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.45703125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 32.73046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.36328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 25.4296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.8515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.94921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.88671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.12890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.8828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.55859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.6015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.09765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.78515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.78125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.60546875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.3359375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.4453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.48046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.1015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 28.37890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.37890625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.28515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.55859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.9375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 29.94921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.3671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.75390625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.2578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.40625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.86328125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.9296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.79296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.0078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.42578125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.53125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.21484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.84765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.7421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.7421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.05859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.1640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.9140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.23046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.9609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.484375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.32421875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.90234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.26171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.59765625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.6953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.6953125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.30859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.1171875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.8203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 19.80859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.3203125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.0625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.87109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.0859375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.9296875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.69140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.25, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.30078125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 20.63671875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 31.23828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.90625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.65234375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.37109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.28125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.4609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.91015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.83984375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.91015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.91015625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.39453125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.1796875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.6640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.44140625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.5625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 17.5625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.37109375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.48046875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.47265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.3828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 17.47265625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 18.640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.3515625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.3056640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 9.3056640625, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.98828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.99609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.98828125, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.9921875, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 8.99609375, + "entries": 843234, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 22.55859375, + "entries": 843234, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 25.0625, + "entries": 843234, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 2262.66796875, + "entries": 843234, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 6912.2607421875, + "entries": 72484.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 4397.59765625, + "entries": 843234, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 4376.92578125, + "entries": 843234, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 38981.294921875, + "entries": 4489942.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 4821.390625, + "entries": 843234, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 4851.5390625, + "entries": 843234, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 101938.3935546875, + "entries": 1035848.0000000001, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 25429.998046875, + "entries": 159362.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 401.82421875, + "entries": 2901.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 26466.01953125, + "entries": 1149726.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 199265.1962890625, + "entries": 4621675.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 5432.24609375, + "entries": 843234, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 43107.19921875, + "entries": 640111.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 15878.90625, + "entries": 843234, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 5140.4873046875, + "entries": 113351.00000000001, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 22670.3271484375, + "entries": 179899.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 76883.9365234375, + "entries": 1859048.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 4553.6962890625, + "entries": 388633.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 24812.0390625, + "entries": 843234, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 4389.44921875, + "entries": 843234, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 4523.27734375, + "entries": 843234, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 2638.94921875, + "entries": 843234, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 2670.2734375, + "entries": 843234, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 2762.9765625, + "entries": 843234, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 2765.80078125, + "entries": 843234, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 2705.828125, + "entries": 843234, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 25609.068359375, + "entries": 4906614.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 2891.25390625, + "entries": 843234, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 2715.78515625, + "entries": 843234, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 2900.20703125, + "entries": 843234, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 2888.3203125, + "entries": 843234, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 341.4453125, + "entries": 843234, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 536.62890625, + "entries": 843234, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 397.79296875, + "entries": 843234, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 6662.13671875, + "entries": 187917.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 27417.6357421875, + "entries": 474392.99999999994, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 4463.0546875, + "entries": 843234, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 33731.30078125, + "entries": 3035643.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 4645.986328125, + "entries": 2500294.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 8608.0546875, + "entries": 843234, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 20227.935546875, + "entries": 513743.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 12420.962890625, + "entries": 843234, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 1489.046875, + "entries": 843234, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 19.8984375, + "entries": 843234, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 20.63671875, + "entries": 843234, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 14207.7578125, + "entries": 843234, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu24_eta2p1", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu24_eta2p1", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 20.63671875, + "entries": 843234, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 38, + "allsize": 0.2138671875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2138671875, + "entries": 38, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2138671875, + "entries": 38, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 448, + "allsize": 1.5634765625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2490234375, + "entries": 448, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.7333984375, + "entries": 448, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.1923828125, + "entries": 448, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.1875, + "entries": 448, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.201171875, + "entries": 448, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2490234375, + "entries": 448, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.7333984375, + "entries": 448, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.1923828125, + "entries": 448, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.1875, + "entries": 448, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.201171875, + "entries": 448, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30555/DoubleMuon_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30555/DoubleMuon_doc.html new file mode 100644 index 000000000..8f43b1b64 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30555/DoubleMuon_doc.html @@ -0,0 +1,1710 @@ + + + + Documentation for 127C2975-1B1C-A046-AABF-62B77E757A86.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet220_CFMax0p3Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon10_Jpsi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_Ele8_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30WP60_SC4_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele35_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele45_WPLoose_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT200_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT400_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT410to430Bool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu18Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BeamGasPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxXORBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpenBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMuOpen_DTBool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT350_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_TkMu0_dEta18_PhiBool_tTrigger/flag bit (process: HLT)
HLT_Mu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu100_PFMHTNoMu100_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu90_PFMHTNoMu90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_Hadronic_2PromptTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30555/DoubleMuon_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30555/DoubleMuon_doc.json new file mode 100644 index 000000000..0d4b622f4 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30555/DoubleMuon_doc.json @@ -0,0 +1,14654 @@ +{ + "filename": "127C2975-1B1C-A046-AABF-62B77E757A86.root", + "filesize": 1969558.767578125, + "trees": { + "Events": { + "entries": 2147195, + "allsize": 1963690.92578125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 42.892578125, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 52.611328125, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 5777.283203125, + "entries": 2147195, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 246.146484375, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 602.6416015625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 719.6875, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 628.8134765625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 630.2822265625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 566.337890625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 517.7490234375, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 519.5283203125, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 721.83203125, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 452.6669921875, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 801.5869140625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 630.5166015625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 663.3603515625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 612.4384765625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 582.2119140625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 657.146484375, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 627.318359375, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 814.306640625, + "entries": 154750.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 353.3369140625, + "entries": 154750.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 386.126953125, + "entries": 154750.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 310.1376953125, + "entries": 154750.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 387.943359375, + "entries": 154750.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 379.982421875, + "entries": 154750.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 326.5966796875, + "entries": 154750.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 391.3896484375, + "entries": 154750.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 391.9873046875, + "entries": 154750.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 395.3427734375, + "entries": 154750.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4013.376953125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3743.58203125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3331.455078125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4026.44140625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3745.021484375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3269.34765625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1114.185546875, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 9953.8232421875, + "entries": 11894564.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 26770.302734375, + "entries": 11894564.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 17465.783203125, + "entries": 11894564.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 26946.755859375, + "entries": 11894564.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 18802.1171875, + "entries": 11894564.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 4758.603515625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 7432.83984375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 4846.228515625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 7449.6328125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 430.751953125, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1665.287109375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 1663.75390625, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 642.662109375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 642.203125, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1943.8271484375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 797.373046875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 797.7822265625, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 778.599609375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 780.791015625, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2052.826171875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1464.2490234375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2083.2919921875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1467.86328125, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2296.5546875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1979.6796875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1527.68359375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 2154.732421875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1503.572265625, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1977.3408203125, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1603.0302734375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1658.796875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 1934.1650390625, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2708.8759765625, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2435.9853515625, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 2290.5927734375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 2375.6923828125, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 2731.7919921875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2573.6865234375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 2146.357421875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 2794.8076171875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1699.4873046875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1711.6396484375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1750.09375, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 1930.48828125, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1639.3779296875, + "entries": 622619.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 769.7177734375, + "entries": 622619.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 721.3095703125, + "entries": 622619.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 941.8779296875, + "entries": 622619.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 770.23828125, + "entries": 622619.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 798.15625, + "entries": 622619.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 793.892578125, + "entries": 622619.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1647.47265625, + "entries": 622619.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1488.24609375, + "entries": 622619.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 637.2041015625, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 613.7734375, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 722.2197265625, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 895.5927734375, + "entries": 622619.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 727.4970703125, + "entries": 622619.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 629.638671875, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 642.419921875, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 658.5654296875, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 642.96875, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 659.98046875, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 675.9931640625, + "entries": 622619.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 610.9384765625, + "entries": 622619.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 304.287109375, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 640.5302734375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 977.564453125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 1058.28515625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 1005.0234375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 1035.29296875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1008.439453125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 1020.921875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 927.2392578125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 960.4814453125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 947.9755859375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 913.1240234375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 959.1171875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 928.765625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 955.1572265625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 908.5380859375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 954.265625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 916.26171875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 1023.099609375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 974.953125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 1052.138671875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1059.0244140625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1047.5400390625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1037.9970703125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 1154.21484375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 957.0341796875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 906.177734375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 818.0380859375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 582.5810546875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 977.767578125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 1051.314453125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 1043.779296875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 1053.228515625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 1069.9638671875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 1057.1083984375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 1053.0927734375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 982.2421875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 1067.4150390625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 1049.3525390625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 1040.5126953125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 973.2255859375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 1149.79296875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 898.4541015625, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 718.548828125, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 966.7802734375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 966.0693359375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 965.0888671875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 962.2333984375, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 898.3779296875, + "entries": 305199.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 387.458984375, + "entries": 305199.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 482.5166015625, + "entries": 305199.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 483.0205078125, + "entries": 305199.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 442.6376953125, + "entries": 305199.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 501.9228515625, + "entries": 305199.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 599.798828125, + "entries": 305199.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 189.3046875, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 538.1005859375, + "entries": 81798.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 457.1806640625, + "entries": 81798.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 456.0009765625, + "entries": 81798.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 417.189453125, + "entries": 81798.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 508.671875, + "entries": 81798.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 248.8642578125, + "entries": 81798.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 773.275390625, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7869.4638671875, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7722.1416015625, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 8357.8232421875, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 6069.958984375, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4957.400390625, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 8399.2763671875, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6844.248046875, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5522.248046875, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3428.146484375, + "entries": 3065386.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1933.416015625, + "entries": 3065386.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1916.650390625, + "entries": 3065386.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 2057.26171875, + "entries": 3065386.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1511.1416015625, + "entries": 3065386.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1122.248046875, + "entries": 3065386.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1370.0302734375, + "entries": 3065386.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1071.4375, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 8539.865234375, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 16624.6611328125, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 15668.0869140625, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 15232.1123046875, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 15023.9638671875, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 21363.7587890625, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 18515.4755859375, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 20103.9833984375, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 18536.39453125, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 3320.47265625, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 13361.537109375, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 13307.7626953125, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 25556.701171875, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4295.6728515625, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4293.0556640625, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 19399.869140625, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 7392.751953125, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 16685.5537109375, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 14948.6875, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 13882.5361328125, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 25149.376953125, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 19193.76953125, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 19354.349609375, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 14663.3310546875, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 16193.7744140625, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 16746.685546875, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 12815.5068359375, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 16471.615234375, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 13262.2294921875, + "entries": 11162645.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2727.794921875, + "entries": 11162645.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1961.404296875, + "entries": 11162645.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2007.6435546875, + "entries": 11162645.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2428.2626953125, + "entries": 11162645.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3025.9267578125, + "entries": 11162645.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 4081.060546875, + "entries": 11162645.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2846.251953125, + "entries": 11162645.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2700.5234375, + "entries": 11162645.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 3796.45703125, + "entries": 11162645.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 4638.505859375, + "entries": 11162645.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 8187.212890625, + "entries": 11162645.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 4335.84375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1058.544921875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1068.9609375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1076.603515625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 4823.0859375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 4018.697265625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 4933.466796875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 4750.244140625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 4887.439453125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 5057.322265625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 5184.18359375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 464.1171875, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 3530.865234375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 901.5458984375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2427.208984375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2442.0166015625, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1741.552734375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2505.755859375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1730.1591796875, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2379.2138671875, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 3342.353515625, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1855.1005859375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2631.1572265625, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1580.0634765625, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2357.609375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2829.78515625, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2313.99609375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2610.6923828125, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 3434.427734375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 3187.45703125, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2237.916015625, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2067.955078125, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1870.8427734375, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 3216.0625, + "entries": 781767.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 893.064453125, + "entries": 781767.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 789.169921875, + "entries": 781767.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 892.3505859375, + "entries": 781767.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 752.17578125, + "entries": 781767.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 832.36328125, + "entries": 781767.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4174.31640625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4175.53515625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2731.107421875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3439.330078125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2730.052734375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 4817.845703125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 7442.63671875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 3982.91796875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3316.560546875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3299.171875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 198.943359375, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 846.673828125, + "entries": 224626.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 897.7626953125, + "entries": 224626.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 898.4658203125, + "entries": 224626.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 334.7841796875, + "entries": 224626.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 335.359375, + "entries": 224626.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 770.5439453125, + "entries": 224626.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 333.76953125, + "entries": 224626.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 662.869140625, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 11571.7890625, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 6911.302734375, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 11508.42578125, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 11732.326171875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 7130.328125, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 12346.41015625, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 11034.357421875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 8387.544921875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 9138.74609375, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 2263.076171875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 15381.146484375, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 12304.966796875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 16285.630859375, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 14486.623046875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 17158.423828125, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 12287.625, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 18308.865234375, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 7603.06640625, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 10279.98046875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 10870.96875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 5627.02734375, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 7119.298828125, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 2280.373046875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 10188.978515625, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 10139.123046875, + "entries": 4806013.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 2469.126953125, + "entries": 4806013.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 3330.744140625, + "entries": 4806013.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 3225.32421875, + "entries": 4806013.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 3917.353515625, + "entries": 4806013.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 2473.85546875, + "entries": 4806013.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1836.25, + "entries": 4806013.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1875.357421875, + "entries": 4806013.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 2036.8720703125, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1626.7373046875, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1423.7607421875, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1784.5947265625, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1782.7353515625, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1750.9267578125, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1686.6796875, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 3260.0615234375, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1782.751953125, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1865.9853515625, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 2005.3818359375, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 2655.03515625, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1902.0185546875, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 2101.98046875, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 1303.7412109375, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 2693.501953125, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 2285.9404296875, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1790.0888671875, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1996.47265625, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1949.482421875, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 2129.955078125, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1803.8232421875, + "entries": 4806013.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 453.900390625, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1742.50390625, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 1745.189453125, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 681.796875, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 680.595703125, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1254.787109375, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 1681.970703125, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 2389.66796875, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 1680.76953125, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 1529.7529296875, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 1757.134765625, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 1819.1826171875, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 3123.5986328125, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 2899.5322265625, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 2373.203125, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 3054.1689453125, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1866.4033203125, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1916.087890625, + "entries": 704205.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 679.3291015625, + "entries": 704205.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 749.9287109375, + "entries": 704205.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 761.4375, + "entries": 704205.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 833.296875, + "entries": 704205.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 974.2978515625, + "entries": 704205.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 679.353515625, + "entries": 704205.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 1405.923828125, + "entries": 704205.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 733.3544921875, + "entries": 704205.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 750.185546875, + "entries": 704205.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 738.998046875, + "entries": 704205.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 684.0908203125, + "entries": 704205.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 699.3017578125, + "entries": 704205.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 741.365234375, + "entries": 704205.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 633.9091796875, + "entries": 704205.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 318.1015625, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2244.923828125, + "entries": 790716.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 2500.626953125, + "entries": 790716.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 583.96875, + "entries": 790716.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 584.91796875, + "entries": 790716.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 708.87890625, + "entries": 790716.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 730.59765625, + "entries": 790716.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 761.78515625, + "entries": 790716.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 584.76953125, + "entries": 790716.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 4806.73828125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4002.431640625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4002.037109375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4002.212890625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4002.669921875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4001.845703125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4006.865234375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 7462.791015625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3794.31640625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3793.921875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3793.32421875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3793.34375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3790.3828125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3789.765625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3689.4296875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4014.33984375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3747.193359375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3309.453125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4000.341796875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3794.65234375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3672.482421875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 6748.609375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 6894.3125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 7062.37890625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 7033.919921875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 6855.044921875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 288.19140625, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 21535.2724609375, + "entries": 12462648.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 21181.5224609375, + "entries": 12462648.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 24852.53125, + "entries": 12462648.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 7386.400390625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 7034.587890625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 7388.71484375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 7369.98046875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 823.1796875, + "entries": 2147195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1346.498046875, + "entries": 2147195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 975.072265625, + "entries": 2147195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 318.49609375, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 2220.380859375, + "entries": 790716.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2146.138671875, + "entries": 790716.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 762.01171875, + "entries": 790716.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 257.923828125, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1044.490234375, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1069.451171875, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 1290.92578125, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 1151.4794921875, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 948.5419921875, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 950.3974609375, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 1276.66796875, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 1108.7431640625, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 761.544921875, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1124.3427734375, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1092.4951171875, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1054.3115234375, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1020.7060546875, + "entries": 401254.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 575.00390625, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 3343.0771484375, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 4385.9970703125, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 4906.19140625, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 4705.2822265625, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 3823.5263671875, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 3848.2646484375, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 2891.796875, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 2302.6806640625, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 2382.5771484375, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 4657.1533203125, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 2334.451171875, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 6296.5078125, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 3844.5615234375, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 3404.58203125, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 3118.177734375, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 4189.9755859375, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 3403.7060546875, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 2845.1201171875, + "entries": 1538850.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 1396.1279296875, + "entries": 1538850.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1546.60546875, + "entries": 1538850.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1610.4677734375, + "entries": 1538850.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 1002.6494140625, + "entries": 1538850.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 1122.435546875, + "entries": 1538850.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 1106.8408203125, + "entries": 1538850.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1612.087890625, + "entries": 1538850.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1511.5078125, + "entries": 1538850.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 1254.8056640625, + "entries": 1538850.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 3991.826171875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3804.96875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3426.896484375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1054.02734375, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 14462.78515625, + "entries": 6536492.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 12695.24609375, + "entries": 6536492.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 12514.35546875, + "entries": 6536492.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 8164.34375, + "entries": 6536492.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1700.45703125, + "entries": 6536492.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 9895.8359375, + "entries": 6536492.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 2878.26953125, + "entries": 6536492.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 2662.19921875, + "entries": 6536492.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 3025.9765625, + "entries": 6536492.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 4035.51171875, + "entries": 6536492.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 52.41796875, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 12100.8125, + "entries": 6377734.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2930.529296875, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2538.05859375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2243.76953125, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 5770.97265625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2439.412109375, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3242.22265625, + "entries": 2147195, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1389.880859375, + "entries": 2147195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1356.208984375, + "entries": 2147195, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 725.201171875, + "entries": 2147195, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 5478.1630859375, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 5373.58203125, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 5464.3203125, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 5377.3173828125, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 3400.2119140625, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 2190.7080078125, + "entries": 2241055.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 610.18359375, + "entries": 622619.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2976.7119140625, + "entries": 11162645.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1856.01953125, + "entries": 4806013.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 632.369140625, + "entries": 704205.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 933.4541015625, + "entries": 1538850.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 4847.2841796875, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 6546.1328125, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 5287.1630859375, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 3987.6630859375, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 6513.296875, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 5437.3955078125, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 5898.947265625, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 5877.111328125, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 6737.533203125, + "entries": 2241055.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1637.984375, + "entries": 2241055.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.998046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.80078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.01171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.01171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.603515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.40625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.01171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.419921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.818359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.6171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.490234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.287109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.615234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.181640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.126953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.689453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.822265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.384765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.458984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.087890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.748046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 206.638671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.123046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.998046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 196.455078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.666015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 196.634765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.5625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.5625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.9140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.09765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.36328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.447265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.853515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.970703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.193359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.818359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.40234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.62109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 198.82421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.65625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.6875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.37109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 339.32421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.595703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.3671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 213.087890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 302.40234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.341796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.2890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.00390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.447265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 248.64453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 338.61328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 357.20703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 349.10546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 348.92578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 191.19140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.91796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.97265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.173828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.892578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.22265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.7734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.3359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.84765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.91796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.80859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.28515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.70703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.78125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.22265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.80078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.08203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.80078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.6015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.181640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.58984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.419921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.419921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.419921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.419921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.419921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.22265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.603515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.22265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.22265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.603515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.525390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.673828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.181640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.599609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.599609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.435546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.224609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.431640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.533203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.259765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.517578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.533203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.966796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.09375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.8203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.51953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.66015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.80859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.58984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.20703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.58984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.85546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 165.7421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.552734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.318359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.87890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 181.947265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 241.314453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 232.544921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.95703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 364.150390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 346.701171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.48046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 206.85546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.8984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 296.1796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.58984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 258.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.341796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 281.73046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.40625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.974609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.224609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.861328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.283203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.419921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.72265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.5390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.755859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.931640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 271.412109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.525390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.01171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.865234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.923828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.607421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.123046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.9296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.462890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.146484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.517578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.525390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.505859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.076171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.64453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.130859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.720703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.388671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.255859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 142.076171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.552734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.31640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.52734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.14453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.3046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.61328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.6640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.6484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.1640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.92578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.8515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.28515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.00390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.6796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.25, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.82421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.46484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.431640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.27734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.044921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.111328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.4453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.076171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.259765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.626953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.44140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.158203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.8671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.1953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.0, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.576171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.369140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.509765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.986328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.201171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.029296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 223.345703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 224.439453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 347.767578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 350.837890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 357.306640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 359.638671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 362.806640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.28125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 363.251953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 362.169921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.03515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.30859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.091796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.908203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.537109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.505859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.599609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.77734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.720703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.427734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.052734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.841796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.818359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 299.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 313.587890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 290.427734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.314453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.763671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.80078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.01953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.962890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 94.990234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 161.67578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 91.611328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.96875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.771484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.455078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.408203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 72.935546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.248046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.431640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.1953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.3359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.388671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.498046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.42578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 46.421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.759765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.689453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 94.685546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 38.814453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.146484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 96.173828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 162.859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 92.794921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.15234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.955078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.5625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.638671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.591796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.119140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.431640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.615234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.6015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.51953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.572265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.681640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.60546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.32421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.943359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.873046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 95.802734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.72265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.2578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.693359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.958984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.5, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.341796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.029296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.83984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.587890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.751953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.705078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.4140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.64453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.15625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.6171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.51171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.826171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.521484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.025390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.193359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.55859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.619140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.8671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.337890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.6328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.134765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.6484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.146484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.24609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 209.7421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.48828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.177734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.162109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.716796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.43359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.5234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.978515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.447265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.259765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.248046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.958984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.818359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.583984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.75, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.91015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.955078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.95703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.38671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.91015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.38671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.73046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.1640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf": { + "name": "HLT_Ele23_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.759765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.8984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.349609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele25_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf": { + "name": "HLT_Ele27_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.533203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.783203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.17578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.95703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.591796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele30_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.7734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.447265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele32_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.63671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_WPLoose_Gsf": { + "name": "HLT_Ele35_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50": { + "name": "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.521484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.958984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf": { + "name": "HLT_Ele45_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.74609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.306640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_SC4_Mass55": { + "name": "HLT_Ele30WP60_SC4_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30WP60_Ele8_Mass55": { + "name": "HLT_Ele30WP60_Ele8_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.576171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.556640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.642578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.693359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.876953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.162109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT410to430": { + "name": "HLT_HT410to430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.40625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.34765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.92578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.82421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.29296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.607421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_eta2p1_MET30": { + "name": "HLT_Mu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.06640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.537109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.126953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1": { + "name": "HLT_DoubleIsoMu17_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 231.9296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu18": { + "name": "HLT_IsoMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.814453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.9609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.275390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.505859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.06640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.287109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.861328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.96875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.431640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.271484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.70703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.041015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 160.837890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 294.76953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 291.470703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 283.880859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu18": { + "name": "HLT_IsoTkMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.818359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 160.869140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 293.1875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 290.693359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 282.900390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.58984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.998046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.58984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.58984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen": { + "name": "HLT_L1SingleMuOpen", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMuOpen_DT": { + "name": "HLT_L1SingleMuOpen_DT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.400390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 195.484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 142.6171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.416015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.77734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.51171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.51953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.40234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.162109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.353515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.470703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.501953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.12890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.1875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.27734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.689453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.064453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 252.5703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.279296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.23046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.630859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.923828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.1875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 340.357421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 342.982421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.87109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 179.30078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 324.376953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.1640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 278.876953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.51953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.66015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.3828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 349.994140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.8515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.341796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.572265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.3046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.3984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.833984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 198.19921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 192.85546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.376953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.248046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.19140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.3203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.181640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.97265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.90234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.90234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.212890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.4765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.1015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.115234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.033203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.7890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.97265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.92578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.53125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.3046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.576171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.576171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.025390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.048828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.37109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.46484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.783203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.021484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.599609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.681640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.357421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.958984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.400390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.837890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.880859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.912109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.28515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.36328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.5625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.00390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.9375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.4453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.80859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.220703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.044921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.943359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.466796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.306640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.01171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.224609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.240234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.134765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.345703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.521484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.66015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.251953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.51171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.68359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet220_CFMax0p3": { + "name": "HLT_DiCentralPFJet220_CFMax0p3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.396484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.916015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.029296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.966796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.380859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.650390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.083984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.447265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.966796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.259765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.279296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.61328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.416015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.291015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.166015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.318359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.814453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.18359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.28125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.447265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.43359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.474609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.87109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET90_PFMHT90_IDTight": { + "name": "HLT_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.970703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight": { + "name": "HLT_PFMET100_PFMHT100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned": { + "name": "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.521484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.548828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.333984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.3125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.294921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.595703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.994140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.646484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.876953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.126953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.74609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.22265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.5390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.083984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.841796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.44140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.90234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.486328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.595703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.833984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.884765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.525390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.736328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.8671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.541015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.775390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.599609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.908203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.673828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.931640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.849609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.873046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.07421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.05859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.412109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.91796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.357421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.54296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.56640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.7265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.544921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.998046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.673828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.50390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.052734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.70703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.876953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.025390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.32421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.71875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.638671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.935546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.76953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.998046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.71875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.455078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.708984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.154296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.900390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.666015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.873046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.57421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.599609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.869140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.580078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.767578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.771484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3": { + "name": "HLT_TripleMu_5_3_3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 140.390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.2734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.15234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.19140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.80078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.01953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.03125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.02734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.349609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.228515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.90234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.380859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.388671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.419921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.498046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.517578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.89453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.00390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.572265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.736328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.677734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.552734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.75, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.583984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.826171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.916015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.4140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.501953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.763671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.798828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.544921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.435546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.732421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.580078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.517578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.251953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.251953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT400_DisplacedDijet40_Inclusive": { + "name": "HLT_HT400_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.74609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500_DisplacedDijet40_Inclusive": { + "name": "HLT_HT500_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.74609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet40_Inclusive": { + "name": "HLT_HT550_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.74609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.12890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.501953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.56640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.646484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.759765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack": { + "name": "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.32421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.591796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.88671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.009765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.80078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.966796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.548828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.943359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.998046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.69140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.72265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.10546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.5390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT250": { + "name": "HLT_DoubleMu8_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.970703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.126953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.521484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 159.869140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.744140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.873046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 142.724609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.751953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.626953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.52734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.154296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.091796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT350": { + "name": "HLT_Ele15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.576171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.310546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.025390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.916015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.669921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.08203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.873046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.95703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT350": { + "name": "HLT_Mu15_IsoVVVL_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.96484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.88671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.74609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.927734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon10_Jpsi_Barrel": { + "name": "HLT_Dimuon10_Jpsi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.345703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.1015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.56640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Onia": { + "name": "HLT_Mu16_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu16_TkMu0_dEta18_Phi": { + "name": "HLT_Mu16_TkMu0_dEta18_Phi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.576171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.6875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.41015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.830078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 138.44921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.126953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.197265625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.38671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.041015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.693359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.978515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.505859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.59765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.935546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.7890625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.4453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.83203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.365234375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.6015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.255859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.00390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.1953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.66015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.455078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.666015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.166015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.146484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.162109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.189453125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.6171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.82421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8203125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.02734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.177734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.44140625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.65625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.62109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.61328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.62109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.59765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.392578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.392578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.603515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.41015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.603515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasMinus": { + "name": "HLT_L1BeamGasMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BeamGasPlus": { + "name": "HLT_L1BeamGasPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.998046875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxXOR": { + "name": "HLT_L1BptxXOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.208984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.984375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.17578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.181640625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.818359375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.40625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.787109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.53515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.521484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.16796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.251953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.228515625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.025390625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.541015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.94921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.67578125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.63671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.44921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.109375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.03125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.646484375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.541015625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.13671875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.73828125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4765625, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4609375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 237.611328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 268.5703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 267.302734375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.05859375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.0078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.486328125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.876953125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.703125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.05078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.919921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.919921875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.84375, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.35546875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.701171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.201171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.330078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.3125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.3125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.80078125, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.4296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.51171875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.4404296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 15.4404296875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.41796875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 15.421875, + "entries": 2147195, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 42.892578125, + "entries": 2147195, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 52.611328125, + "entries": 2147195, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 5777.283203125, + "entries": 2147195, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 14317.4150390625, + "entries": 154750.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11088.4140625, + "entries": 2147195, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 11040.810546875, + "entries": 2147195, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 101052.9677734375, + "entries": 11894564.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 12191.443359375, + "entries": 2147195, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 12295.861328125, + "entries": 2147195, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 79293.5810546875, + "entries": 622619.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 49875.7734375, + "entries": 305199.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 2815.3125, + "entries": 81798.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 69854.73046875, + "entries": 3065386.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 482352.734375, + "entries": 11162645.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 41194.392578125, + "entries": 2147195, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 57816.978515625, + "entries": 781767.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 40109.474609375, + "entries": 2147195, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 10063.330078125, + "entries": 224626.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 327611.83203125, + "entries": 4806013.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 44347.3876953125, + "entries": 704205.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 9018.5703125, + "entries": 790716.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 62732.076171875, + "entries": 2147195, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11070.986328125, + "entries": 2147195, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11467.4765625, + "entries": 2147195, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 6748.609375, + "entries": 2147195, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6894.3125, + "entries": 2147195, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 7062.37890625, + "entries": 2147195, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7033.919921875, + "entries": 2147195, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 6855.044921875, + "entries": 2147195, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 67857.517578125, + "entries": 12462648.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 7386.400390625, + "entries": 2147195, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 7034.587890625, + "entries": 2147195, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 7388.71484375, + "entries": 2147195, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 7369.98046875, + "entries": 2147195, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 823.1796875, + "entries": 2147195, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1346.498046875, + "entries": 2147195, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 975.072265625, + "entries": 2147195, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 14152.021484375, + "entries": 401254.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 80355.615234375, + "entries": 1538850.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 11223.69140625, + "entries": 2147195, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 73089.0078125, + "entries": 6536492.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 12153.23046875, + "entries": 6377734.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 21911.0546875, + "entries": 2147195, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 80780.015625, + "entries": 2241055.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 29764.23828125, + "entries": 2147195, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2951.60546875, + "entries": 2147195, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 38.814453125, + "entries": 2147195, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 40.1953125, + "entries": 2147195, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 34930.6875, + "entries": 2147195, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon0er16_Jpsi_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf", + "HLT_Ele23_WPLoose_Gsf_WHbbBoost", + "HLT_Ele24_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPLoose_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPLoose_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPLoose_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele35_WPLoose_Gsf", + "HLT_Ele35_CaloIdVT_GsfTrkIdT_PFJet150_PFJet50", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_WPLoose_Gsf", + "HLT_Ele45_WPLoose_Gsf_L1JetTauSeeded", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_Ele30WP60_SC4_Mass55", + "HLT_Ele30WP60_Ele8_Mass55", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT410to430", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_Mu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu17_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_DoubleIsoMu17_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu18", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu18", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L1SingleMuOpen", + "HLT_L1SingleMuOpen_DT", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET80", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Tight", + "HLT_Mu33NoFiltersNoVtxDisplaced_DisplacedJet50_Loose", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet220_CFMax0p3", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET90_PFMHT90_IDTight", + "HLT_PFMET100_PFMHT100_IDTight", + "HLT_PFMET100_PFMHT100_IDTight_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu30_Ele30_CaloIdL_GsfTrkIdVL", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT200_DisplacedDijet40_DisplacedTrack", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT400_DisplacedDijet40_Inclusive", + "HLT_HT500_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_Hadronic", + "HLT_VBF_DisplacedJet40_Hadronic_2PromptTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu90_PFMHTNoMu90_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu100_PFMHTNoMu100_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT250", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT250", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT350_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT350", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT350_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT350", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon10_Jpsi_Barrel", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_Mu16_TkMu0_dEta18_Onia", + "HLT_Mu16_TkMu0_dEta18_Phi", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet140", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1BeamGasMinus", + "HLT_L1BeamGasPlus", + "HLT_L1BptxXOR", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 40.1953125, + "entries": 2147195, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 36, + "allsize": 0.208984375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.208984375, + "entries": 36, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.208984375, + "entries": 36, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 2765, + "allsize": 2.6181640625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2802734375, + "entries": 2765, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.6318359375, + "entries": 2765, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2275390625, + "entries": 2765, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.2265625, + "entries": 2765, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.251953125, + "entries": 2765, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2802734375, + "entries": 2765, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.6318359375, + "entries": 2765, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2275390625, + "entries": 2765, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.2265625, + "entries": 2765, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.251953125, + "entries": 2765, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30556/DoubleMuonLowMass_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30556/DoubleMuonLowMass_doc.html new file mode 100644 index 000000000..f4f0efbed --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30556/DoubleMuonLowMass_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for 099CA462-4872-6C47-BB35-49CC7B88CBCD.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30556/DoubleMuonLowMass_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30556/DoubleMuonLowMass_doc.json new file mode 100644 index 000000000..84d6a010d --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30556/DoubleMuonLowMass_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "099CA462-4872-6C47-BB35-49CC7B88CBCD.root", + "filesize": 2473637.244140625, + "trees": { + "Events": { + "entries": 3335664, + "allsize": 2468506.1142578125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 75.837890625, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 88.201171875, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 8981.740234375, + "entries": 3335664, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 139.162109375, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 253.548828125, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 261.69921875, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 259.388671875, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 259.314453125, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 260.77734375, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 246.212890625, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 237.490234375, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 262.3984375, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 232.630859375, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 270.466796875, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 254.345703125, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 259.345703125, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 253.251953125, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 252.716796875, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 267.6015625, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 255.484375, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 271.37109375, + "entries": 19266.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 208.552734375, + "entries": 19266.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 217.9453125, + "entries": 19266.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 199.794921875, + "entries": 19266.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 221.93359375, + "entries": 19266.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 213.4375, + "entries": 19266.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 204.619140625, + "entries": 19266.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 217.267578125, + "entries": 19266.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 215.091796875, + "entries": 19266.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 217.146484375, + "entries": 19266.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 6250.916015625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 5831.3046875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 5242.474609375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 6277.3515625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 5831.216796875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 5071.21875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1730.142578125, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 14837.0009765625, + "entries": 17571905.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 39963.3701171875, + "entries": 17571905.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 26097.8037109375, + "entries": 17571905.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 40233.2841796875, + "entries": 17571905.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 27983.6982421875, + "entries": 17571905.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 7431.568359375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 11458.171875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 7568.525390625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 11495.2890625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 559.826171875, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1776.28515625, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 1775.81640625, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 802.03515625, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 800.84375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2076.337890625, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 856.9921875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 860.037109375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 844.4921875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 847.66015625, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2176.05078125, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1605.333984375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2206.103515625, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1614.99609375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2335.02734375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2116.15234375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1660.671875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 2251.296875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1557.83203125, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2099.568359375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1720.970703125, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1784.79296875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 2048.138671875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2684.884765625, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2356.251953125, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 2440.095703125, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 2512.333984375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 2711.630859375, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2523.185546875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 2249.89453125, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 2789.779296875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1817.576171875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1820.892578125, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1880.3046875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 2074.44140625, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1789.216796875, + "entries": 577902.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 936.697265625, + "entries": 577902.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 901.259765625, + "entries": 577902.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1092.572265625, + "entries": 577902.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 937.3203125, + "entries": 577902.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 935.25, + "entries": 577902.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 951.265625, + "entries": 577902.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1803.13671875, + "entries": 577902.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1621.41015625, + "entries": 577902.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 791.478515625, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 770.64453125, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 880.181640625, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1032.728515625, + "entries": 577902.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 884.275390625, + "entries": 577902.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 799.4375, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 817.00390625, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 830.228515625, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 814.58984375, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 834.1953125, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 843.248046875, + "entries": 577902.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 767.615234375, + "entries": 577902.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 161.369140625, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 274.634765625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 321.56640625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 326.31640625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 321.70703125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 323.86328125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 324.11328125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 327.02734375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 303.568359375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 305.869140625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 302.619140625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 302.033203125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 306.37109375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 305.87109375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 304.505859375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 301.423828125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 305.953125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 304.69140625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 318.84765625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 315.765625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 326.4140625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 328.302734375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 327.021484375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 326.392578125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 334.64453125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 313.451171875, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 290.875, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 279.599609375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 241.826171875, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 320.32421875, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 327.77734375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 326.59375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 327.6484375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 333.994140625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 332.611328125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 331.443359375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 317.953125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 332.142578125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 329.849609375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 329.333984375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 319.501953125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 335.3203125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 302.603515625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 283.69140625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 315.435546875, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 315.505859375, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 314.392578125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 313.587890625, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 285.580078125, + "entries": 37715.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 214.1015625, + "entries": 37715.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 237.259765625, + "entries": 37715.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 238.501953125, + "entries": 37715.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 233.658203125, + "entries": 37715.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 236.630859375, + "entries": 37715.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 252.0546875, + "entries": 37715.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 117.65234375, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 229.833984375, + "entries": 11061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 217.447265625, + "entries": 11061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 217.705078125, + "entries": 11061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 212.6875, + "entries": 11061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 227.8046875, + "entries": 11061.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 183.501953125, + "entries": 11061.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 1118.439453125, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 9413.9580078125, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 9262.208984375, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 9971.1689453125, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 7363.7099609375, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 6067.3310546875, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 10041.1962890625, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 8240.220703125, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 6609.1142578125, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4223.361328125, + "entries": 3616614.0000000005, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 2510.4375, + "entries": 3616614.0000000005, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 2445.91796875, + "entries": 3616614.0000000005, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 2598.1259765625, + "entries": 3616614.0000000005, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 2093.0625, + "entries": 3616614.0000000005, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1630.458984375, + "entries": 3616614.0000000005, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1912.09765625, + "entries": 3616614.0000000005, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1594.1875, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 11249.4833984375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 20387.4365234375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 18920.9521484375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 19593.201171875, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 18606.345703125, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 26874.1162109375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 24436.314453125, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 25278.1962890625, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 22418.10546875, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 4363.3056640625, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 16675.8583984375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 16583.61328125, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 32326.10546875, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 5879.3212890625, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 5879.9306640625, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 24052.267578125, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 8631.9052734375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 21182.720703125, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 19016.6533203125, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 17681.609375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 31976.7578125, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 23669.8193359375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 25392.5791015625, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 18848.666015625, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 20867.5263671875, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 21774.708984375, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 16353.029296875, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 21037.025390625, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 16290.232421875, + "entries": 13764574.000000002, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3752.19921875, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2953.04296875, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 3034.0302734375, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 3550.3642578125, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3814.3515625, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 5101.2216796875, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 4823.0771484375, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3764.3837890625, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 5142.9189453125, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 6278.4443359375, + "entries": 13764574.000000002, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 10063.138671875, + "entries": 13764574.000000002, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 2442.92578125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1199.662109375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1208.765625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1215.455078125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 6238.7265625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 1696.630859375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 6945.251953125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 6113.658203125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 6343.404296875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 6728.494140625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 7317.0, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 706.58984375, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 4954.91015625, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1223.935546875, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3459.9921875, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3487.021484375, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2490.66015625, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3569.12890625, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2485.853515625, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3390.052734375, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 4702.328125, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2662.103515625, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 3740.998046875, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2177.193359375, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 3345.30859375, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3846.4140625, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3066.61328125, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 3712.525390625, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 4793.86328125, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 4484.74609375, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 3169.6796875, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2962.63671875, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2636.341796875, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 4532.5546875, + "entries": 1075306.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1332.87890625, + "entries": 1075306.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1156.015625, + "entries": 1075306.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1332.365234375, + "entries": 1075306.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1130.4609375, + "entries": 1075306.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1237.95703125, + "entries": 1075306.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 6503.1875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 6505.1875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 4191.818359375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 5339.373046875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 4192.435546875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 7525.923828125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 11532.02734375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 6185.49609375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 5128.962890625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 5105.02734375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 388.810546875, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1695.826171875, + "entries": 452702.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1799.8876953125, + "entries": 452702.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1800.5283203125, + "entries": 452702.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 660.7021484375, + "entries": 452702.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 661.44140625, + "entries": 452702.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1544.5400390625, + "entries": 452702.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 658.67578125, + "entries": 452702.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 721.908203125, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 17085.3671875, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 9806.513671875, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 17049.109375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 17624.056640625, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 10529.734375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 18555.12109375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 16463.673828125, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 12205.568359375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 12956.37890625, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 3240.162109375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 23792.748046875, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 18767.830078125, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 25206.791015625, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 22954.693359375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 26417.154296875, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 18561.83984375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 26933.353515625, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 10802.66796875, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 15062.95703125, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 16403.9375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 8479.37109375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 11168.447265625, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 3463.052734375, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 13237.306640625, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 12647.642578125, + "entries": 7235446.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 3702.134765625, + "entries": 7235446.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 4651.291015625, + "entries": 7235446.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 4821.109375, + "entries": 7235446.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 5818.654296875, + "entries": 7235446.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 3713.66015625, + "entries": 7235446.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 2786.828125, + "entries": 7235446.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 2655.611328125, + "entries": 7235446.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 3014.087890625, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 2332.958984375, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 2148.544921875, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 2485.712890625, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 2488.357421875, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 2434.255859375, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 2359.77734375, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 4608.353515625, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 2489.19140625, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 2669.103515625, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 3070.775390625, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 4185.2265625, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 2486.931640625, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 2147.078125, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 2000.892578125, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 3899.6953125, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 3330.236328125, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 2489.669921875, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 2996.91015625, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 2944.25, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 2939.4453125, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 2470.830078125, + "entries": 7235446.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 528.642578125, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1520.3515625, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 1522.9609375, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 729.7421875, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 728.1875, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1213.390625, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 1496.0390625, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 2002.69921875, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 1466.54296875, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 1386.482421875, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 1628.34375, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 1656.283203125, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 2480.966796875, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 2247.177734375, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 1995.8671875, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 2372.310546875, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1627.724609375, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1670.7578125, + "entries": 500422.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 726.076171875, + "entries": 500422.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 785.146484375, + "entries": 500422.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 801.30859375, + "entries": 500422.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 848.453125, + "entries": 500422.00000000006, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 947.580078125, + "entries": 500422.00000000006, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 725.984375, + "entries": 500422.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 1319.140625, + "entries": 500422.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 778.013671875, + "entries": 500422.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 796.34765625, + "entries": 500422.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 786.25, + "entries": 500422.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 745.822265625, + "entries": 500422.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 760.255859375, + "entries": 500422.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 786.0703125, + "entries": 500422.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 698.052734375, + "entries": 500422.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 611.0625, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 4297.9189453125, + "entries": 1498141.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 4796.5673828125, + "entries": 1498141.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 1136.22265625, + "entries": 1498141.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 1138.1826171875, + "entries": 1498141.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1378.69140625, + "entries": 1498141.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1417.0478515625, + "entries": 1498141.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 1477.2490234375, + "entries": 1498141.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 1137.818359375, + "entries": 1498141.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 7510.10546875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 6243.345703125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 6242.646484375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 6241.900390625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 6243.193359375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 6242.587890625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 6249.130859375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 11567.150390625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 5883.04296875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 5882.34375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 5882.73046875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 5881.97265625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 5880.93359375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 5881.6953125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 5645.09375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 6261.078125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 5833.744140625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 5123.3125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 6241.576171875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 5879.46875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 5599.037109375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 10318.265625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 10489.25390625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 10989.75, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 11121.294921875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 10692.490234375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 447.8125, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 32363.5048828125, + "entries": 19478696.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 31879.3447265625, + "entries": 19478696.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 35807.6953125, + "entries": 19478696.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 11362.998046875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 9748.939453125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 11469.65234375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 11441.625, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 1146.453125, + "entries": 3335664, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 2106.904296875, + "entries": 3335664, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1438.892578125, + "entries": 3335664, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 611.76171875, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 4277.3046875, + "entries": 1498141.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 4132.60546875, + "entries": 1498141.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 1477.3095703125, + "entries": 1498141.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 129.666015625, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 299.75, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 300.3125, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 314.2421875, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 307.509765625, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 283.814453125, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 282.958984375, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 314.3671875, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 299.013671875, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 263.8125, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 302.201171875, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 296.990234375, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 291.400390625, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 286.560546875, + "entries": 40825.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 538.765625, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1766.4609375, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 2043.626953125, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 2189.109375, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 2127.767578125, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1791.81640625, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1793.18359375, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1764.716796875, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1642.0234375, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1396.66015625, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 2123.662109375, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1374.9375, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 2486.01171875, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1819.65625, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1758.103515625, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1857.541015625, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1765.609375, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1786.84375, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1653.5390625, + "entries": 537412.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 911.5078125, + "entries": 537412.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1054.478515625, + "entries": 537412.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 988.8671875, + "entries": 537412.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 782.689453125, + "entries": 537412.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 860.25, + "entries": 537412.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 860.009765625, + "entries": 537412.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1051.59765625, + "entries": 537412.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1007.46875, + "entries": 537412.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 960.802734375, + "entries": 537412.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 6228.873046875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 5872.0078125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 5260.646484375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 415.62109375, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 1843.87890625, + "entries": 626755.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 1811.158203125, + "entries": 626755.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 1815.244140625, + "entries": 626755.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 1207.72265625, + "entries": 626755.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 457.4375, + "entries": 626755.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 1440.7265625, + "entries": 626755.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 626.87890625, + "entries": 626755.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 583.248046875, + "entries": 626755.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 605.8984375, + "entries": 626755.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 777.3203125, + "entries": 626755.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 78.91796875, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 18362.837890625, + "entries": 10005987.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 4559.708984375, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 4095.44921875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 3635.44921875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 9036.48828125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 3817.607421875, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 4906.14453125, + "entries": 3335664, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 2138.060546875, + "entries": 3335664, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 2093.646484375, + "entries": 3335664, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 1065.392578125, + "entries": 3335664, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 8992.935546875, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 8836.7265625, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 8946.41015625, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 8839.509765625, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 5619.916015625, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 3518.447265625, + "entries": 3747175.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 768.2421875, + "entries": 577902.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 4062.220703125, + "entries": 13764574.000000002, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2652.96484375, + "entries": 7235446.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 698.578125, + "entries": 500422.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 752.521484375, + "entries": 537412.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 7944.009765625, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 10749.7109375, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 8622.837890625, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 6471.923828125, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 10734.3828125, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 8793.861328125, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 9688.12890625, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 9653.62890625, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 11187.99609375, + "entries": 3747175.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 2779.46484375, + "entries": 3747175.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.126953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.525390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.97265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.826171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.4765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.427734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.248046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.939453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.607421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.837890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.947265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.521484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.623046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.279296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.619140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.072265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.587890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.591796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.177734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.689453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.341796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.056640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.837890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.73046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.48828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.67578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.884765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.896484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.986328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.029296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.841796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.5234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 230.5390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.08984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.83203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 561.21484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.099609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 416.765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.787109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 359.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.025390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 409.6484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.76953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.849609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 510.4609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 566.24609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 460.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 517.21875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 499.52734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.0, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.0, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.5234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.314453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.509765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.5078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.47265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.1640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.50390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.50390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.43359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.2734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.623046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.826171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.826171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.775390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.794921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.783203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.904296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.287109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.712890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.115234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.634765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.716796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.177734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.541015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.560546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.52734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.40234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.3046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.923828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.37109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.923828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.37109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.95703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.90234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.642578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.318359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.58203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.271484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 321.990234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 254.212890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.24609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 353.994140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 277.259765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.29296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.21875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 170.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 189.31640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 167.8125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.517578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.4765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.84765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.126953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.654296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.126953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.037109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.591796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 177.568359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.919921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.5859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.05859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.529296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.525390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.611328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.927734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.861328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.970703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.466796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.162109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.98828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.451171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.888671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.369140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.322265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.193359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.498046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.705078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.275390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.271484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.658203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.759765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.744140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.392578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.91796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.1953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.82421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.29296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.3671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.84375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.65234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.60546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.51171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.71484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.58203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.9609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.48046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.25, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.5078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.3515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.3203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.0390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.65234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.1875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.013671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.2734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.580078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.365234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.48828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.818359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.857421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.853515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.939453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.81640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.86328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.923828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.14453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.322265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.51171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.126953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.126953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.419921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.326171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 349.169921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 325.833984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 357.080078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 334.888671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.107421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 367.697265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 353.732421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 321.939453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 308.076171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.2109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 252.591796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.458984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.16015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.01171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.673828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.322265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.228515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.509765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.83984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.658203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.185546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.236328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.705078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 440.94140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 444.689453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 379.669921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.708984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.427734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.923828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 72.552734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 151.095703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 243.4375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 140.623046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 80.453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 75.916015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.97265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 75.380859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 77.236328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 90.900390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.630859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.669921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.97265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.01953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 77.240234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.939453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 74.203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.81640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.5859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 79.23046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 76.8671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 73.37109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 73.37109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 74.419921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 75.962890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 148.693359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.427734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 73.26953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.650390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 153.193359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 245.53515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 142.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 82.55078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 78.013671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 77.478515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 79.333984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 92.998046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 73.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 71.767578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 71.97265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.1171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 79.337890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.037109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 76.30078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.9140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 78.96484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 75.46875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 75.46875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 76.517578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 78.060546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 150.783203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.48046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.591796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.302734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.89453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.615234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.107421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.7734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.396484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.345703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.677734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.87109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.0234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.43359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.80078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.76171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.486328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.30859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.783203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.533203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.623046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.8515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.654296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.36328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.978515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.947265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.91015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.533203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.94921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.1015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.744140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.982421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.685546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.8046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.650390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 514.787109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 571.4375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.298828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.26171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.978515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.158203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.771484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.353515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.74609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.99609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.384765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.8125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.0546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.9296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.37109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.1015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.361328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.07421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.658203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.701171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.22265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.37109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.04296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.646484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.9921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.611328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.96484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.361328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.623046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.810546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.751953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.767578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.779296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.783203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.794921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.09765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.5625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.220703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.091796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.5546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.51953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.486328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.158203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.794921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.3984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.724609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.33984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.498046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.384765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.83203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.083984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.990234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.95703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.791015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.314453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.177734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.888671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.115234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.025390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.525390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.48046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.775390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.15234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.46875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.46875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.8203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.62109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.732421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.287109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.251953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.244140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.33203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.26953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.26953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.830078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.759765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.0859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.916015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.5, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.283203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.166015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.30078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.013671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.82421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.419921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.34765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.47265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.322265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.90234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.498046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.94921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.5546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.72265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.771484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.24609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.119140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.767578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.70703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.3515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.892578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.9375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.791015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.345703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.1953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.85546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.599609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.3125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.955078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.59765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.35546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.814453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.505859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.66015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.6640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.69140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.52734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.322265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.322265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.021484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.021484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.46875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.46875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.48828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.884765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.888671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.005859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.029296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.083984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.884765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.447265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.466796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.443359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.466796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.83203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.80859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.90234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.96875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.60546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.2734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.21484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.1953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.552734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.564453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.607421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.666015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.705078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.34375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.27734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.650390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.642578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.740234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.630859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.138671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.58984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.982421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.50390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.08203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.232421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.466796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.462890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.462890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.533203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.548828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.564453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.580078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.666015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.529296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.767578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.0234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.892578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.837890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.908203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.990234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.880859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.9765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.0, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.94921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.634765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.16796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.3828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.314453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.7421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.869140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.490234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.8046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.970703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.927734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.775390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.400390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.677734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.537109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.9609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.962890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.689453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.19140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.3515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.8515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.591796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.623046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.248046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.333984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.34765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.314453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.916015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.15625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.9921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.25390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.26171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.322265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.923828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.326171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.951171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.326171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.951171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.357421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.943359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.70703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.28125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.876953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.9453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.232421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.02734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.99609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.02734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.861328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.697265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.193359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.0078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.005859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.1640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.958984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.529296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.162109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.580078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.53515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.576171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.685546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.732421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.517578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.400390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.181640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.5625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.330078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.443359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.642578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.615234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.615234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.267578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.08203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.87109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.8828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.37890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.7734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.16015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.98046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.79296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.78515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.8046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.154296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.505859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.25390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.732421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.736328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.732421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.744140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.740234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.11328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.1015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.837890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.876953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.908203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.5703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.3046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.58203125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.806640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.716796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.580078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.1875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.892578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.279296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.552734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.455078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.232421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.099609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.076171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.958984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.041015625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.18359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.20703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.1875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.623046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.353515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.244140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.58984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.927734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.68359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.025390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.525390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.501953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.07421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.02734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.84765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.650390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.255859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.501953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.470703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 161.279296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.400390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.431640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.314453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.787109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.537109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.861328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.9375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.13671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.25, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.02734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.244140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.259765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.67578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 209.4375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.6953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.4296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.298828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.130859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.142578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.48828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.974609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.494140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.849609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.6796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.79296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.107421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.6953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.3671875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.72265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.720703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.154296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.796875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.3828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.09765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.447265625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.048828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.849609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.845703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.814453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.865234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.78125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.525390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.4765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.4765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.4765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.826171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.224609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.224609375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.923828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.623046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.431640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.4765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.923828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.314453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.37109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.46875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.0703125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.126953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.126953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.728515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.1484375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.08984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.78515625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.77734375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.748046875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.740234375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.51171875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.50390625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.87890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.5859375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.29296875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.19921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.59765625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.830078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.876953125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.62109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.1328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.412109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.35546875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.412109375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.17578125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.8125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.080078125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.556640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.462890625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.57421875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.640625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.328125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.318359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.318359375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.64453125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.53125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.4140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.4140625, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.98828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.98828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.9921875, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.984375, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.98828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.98828125, + "entries": 3335664, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 75.837890625, + "entries": 3335664, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 88.201171875, + "entries": 3335664, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 8981.740234375, + "entries": 3335664, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 6412.99609375, + "entries": 19266.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 17324.6953125, + "entries": 3335664, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 17179.787109375, + "entries": 3335664, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 150845.2998046875, + "entries": 17571905.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 18889.740234375, + "entries": 3335664, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 19063.814453125, + "entries": 3335664, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 86040.53125, + "entries": 577902.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 16634.142578125, + "entries": 37715.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1406.6328125, + "entries": 11061.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 85500.8095703125, + "entries": 3616614.0000000005, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 614181.3681640625, + "entries": 13764574.000000002, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 47449.974609375, + "entries": 3335664, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 81791.12890625, + "entries": 1075306.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 62209.439453125, + "entries": 3335664, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 19709.3935546875, + "entries": 452702.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 482931.92578125, + "entries": 7235446.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 40477.55078125, + "entries": 500422.00000000006, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 17390.7607421875, + "entries": 1498141.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 97477.873046875, + "entries": 3335664, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 17218.134765625, + "entries": 3335664, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 17720.08203125, + "entries": 3335664, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 10318.265625, + "entries": 3335664, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 10489.25390625, + "entries": 3335664, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 10989.75, + "entries": 3335664, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 11121.294921875, + "entries": 3335664, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 10692.490234375, + "entries": 3335664, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 100498.357421875, + "entries": 19478696.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 11362.998046875, + "entries": 3335664, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 9748.939453125, + "entries": 3335664, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 11469.65234375, + "entries": 3335664, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 11441.625, + "entries": 3335664, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 1146.453125, + "entries": 3335664, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 2106.904296875, + "entries": 3335664, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1438.892578125, + "entries": 3335664, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 3972.599609375, + "entries": 40825.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 42910.228515625, + "entries": 537412.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 17361.52734375, + "entries": 3335664, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 11585.134765625, + "entries": 626755.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 18441.755859375, + "entries": 10005987.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 34282.5546875, + "entries": 3335664, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 132445.283203125, + "entries": 3747175.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 32799.888671875, + "entries": 3335664, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 4846.93359375, + "entries": 3335664, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 67.427734375, + "entries": 3335664, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 69.875, + "entries": 3335664, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 39826.29296875, + "entries": 3335664, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 69.875, + "entries": 3335664, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 15, + "allsize": 0.126953125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.126953125, + "entries": 15, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.126953125, + "entries": 15, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 3105, + "allsize": 2.7080078125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2412109375, + "entries": 3105, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.7333984375, + "entries": 3105, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2431640625, + "entries": 3105, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.23828125, + "entries": 3105, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.251953125, + "entries": 3105, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2412109375, + "entries": 3105, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.7333984375, + "entries": 3105, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2431640625, + "entries": 3105, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.23828125, + "entries": 3105, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.251953125, + "entries": 3105, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30557/HTMHT_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30557/HTMHT_doc.html new file mode 100644 index 000000000..40e73f655 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30557/HTMHT_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for 1CE8009B-34E4-C64B-91F5-DB6A107CCE17.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30557/HTMHT_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30557/HTMHT_doc.json new file mode 100644 index 000000000..396721c1c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30557/HTMHT_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "1CE8009B-34E4-C64B-91F5-DB6A107CCE17.root", + "filesize": 2500450.23046875, + "trees": { + "Events": { + "entries": 2190003, + "allsize": 2494916.4052734375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 71.5771484375, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 83.9482421875, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 5937.6416015625, + "entries": 2190003, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 298.0263671875, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 781.51953125, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 891.49609375, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 788.625, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 789.00390625, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 782.421875, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 734.05078125, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 701.41796875, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 892.6171875, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 593.40625, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 1000.95703125, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 795.2890625, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 775.25, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 799.421875, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 781.15625, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 846.234375, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 785.6953125, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 966.04296875, + "entries": 176394.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 460.7109375, + "entries": 176394.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 513.58203125, + "entries": 176394.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 407.85546875, + "entries": 176394.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 527.53125, + "entries": 176394.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 477.875, + "entries": 176394.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 418.34765625, + "entries": 176394.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 496.671875, + "entries": 176394.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 488.71484375, + "entries": 176394.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 486.6796875, + "entries": 176394.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4163.9873046875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3922.6953125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3383.3251953125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4174.6875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3956.8330078125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3329.669921875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1187.3994140625, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 10570.51171875, + "entries": 12083664.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 27685.3818359375, + "entries": 12083664.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 17845.0087890625, + "entries": 12083664.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 27809.4365234375, + "entries": 12083664.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 19362.591796875, + "entries": 12083664.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 5003.2041015625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 7659.529296875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 5037.8427734375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 7624.75390625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 682.0048828125, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3827.41015625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 3821.69921875, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1204.01171875, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1203.53515625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 4487.2265625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1956.79296875, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1943.54296875, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1870.890625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 1872.71484375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4712.67578125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 3236.515625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4772.90234375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 3263.58203125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 5531.640625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 4554.51953125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 3443.65625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 5026.37109375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 3541.9375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 4518.09765625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 3685.75, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 3772.15234375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 4504.00390625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 6738.5078125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 6331.125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 5169.48828125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 5386.99609375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 6817.65234375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 6579.140625, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 4999.828125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 6843.59375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3908.3359375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 3944.3125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3994.8984375, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 4387.17578125, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 3682.60546875, + "entries": 1615772.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1504.2109375, + "entries": 1615772.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1362.62109375, + "entries": 1615772.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1993.99609375, + "entries": 1615772.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1505.98828125, + "entries": 1615772.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1662.31640625, + "entries": 1615772.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1571.625, + "entries": 1615772.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 3616.6171875, + "entries": 1615772.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 3248.953125, + "entries": 1615772.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 1157.6328125, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 1109.41796875, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1352.01171875, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1867.89453125, + "entries": 1615772.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1368.17578125, + "entries": 1615772.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 1128.4140625, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 1147.140625, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 1182.97265625, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 1146.28125, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 1176.26953125, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1223.71484375, + "entries": 1615772.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1088.15625, + "entries": 1615772.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 692.1748046875, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 2913.4609375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 4752.74609375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 5601.57421875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 5139.93359375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 5452.3125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 4818.0546875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 4853.765625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 4654.73046875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 5282.359375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 5215.265625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 4716.37890625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 5283.74609375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 4994.58203125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 5356.69140625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 4535.43359375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 5277.01953125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 4951.59765625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 5390.671875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 4951.421875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 5149.08984375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 5639.8984375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 5503.35546875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 5488.11328125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 6339.640625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 5093.56640625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 4203.98046875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 3759.85546875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 2313.21875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 5026.3046875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 5597.05078125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 5428.29296875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 5430.94140625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 5738.953125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 5629.00390625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 5621.5703125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 4915.56640625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 5735.1328125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 5521.5546875, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 5580.40234375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 5134.09375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 6337.62890625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 4627.453125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 3886.34765625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 5173.51953125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 5185.90625, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 5199.33984375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 5187.87109375, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 3102.05078125, + "entries": 2116254.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1455.91796875, + "entries": 2116254.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1910.453125, + "entries": 2116254.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1907.2421875, + "entries": 2116254.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 1809.53125, + "entries": 2116254.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 1708.2890625, + "entries": 2116254.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 2814.71484375, + "entries": 2116254.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 122.08203125, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 249.46875, + "entries": 16311.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 233.77734375, + "entries": 16311.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 233.5625, + "entries": 16311.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 227.19140625, + "entries": 16311.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 245.55859375, + "entries": 16311.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 185.61328125, + "entries": 16311.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 857.5947265625, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7998.015625, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7844.923828125, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 8412.20703125, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 6280.162109375, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 5135.228515625, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 8451.46875, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6915.205078125, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5744.119140625, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3563.333984375, + "entries": 3147591.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1936.134765625, + "entries": 3147591.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1984.115234375, + "entries": 3147591.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1979.6171875, + "entries": 3147591.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1671.3916015625, + "entries": 3147591.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1231.224609375, + "entries": 3147591.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1557.21875, + "entries": 3147591.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1242.880859375, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 12663.8623046875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 24790.3076171875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 23878.6083984375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 21478.2412109375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 22415.8037109375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 31642.0888671875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 25917.0263671875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 28946.3662109375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 27368.7880859375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 5079.8515625, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 19488.80078125, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 18251.05078125, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 38065.8857421875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 8321.65234375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 8332.41015625, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 29541.3271484375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 4363.47265625, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 24166.9560546875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 22047.4130859375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 21040.8623046875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 37493.0654296875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 29166.2646484375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 27757.2373046875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 26231.2099609375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 23696.4248046875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 23814.5771484375, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 19468.95703125, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 23626.5341796875, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 19402.58203125, + "entries": 16787775.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 4060.07421875, + "entries": 16787775.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2526.34375, + "entries": 16787775.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 3561.1171875, + "entries": 16787775.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 4066.46875, + "entries": 16787775.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3340.5859375, + "entries": 16787775.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 3406.10546875, + "entries": 16787775.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2524.4765625, + "entries": 16787775.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3917.41796875, + "entries": 16787775.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 3373.8515625, + "entries": 16787775.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 5864.40234375, + "entries": 16787775.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 12421.2021484375, + "entries": 16787775.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 2733.091796875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 2528.7080078125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 2573.08203125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2606.4462890625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 869.29296875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 445.4072265625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 898.2705078125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 862.7939453125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 877.0791015625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 3074.3759765625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 3123.349609375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 593.6328125, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 5084.2265625, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1494.8515625, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3503.76171875, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3512.48046875, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2515.14453125, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3610.03515625, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2475.79296875, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3443.0078125, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 4805.9921875, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2680.34765625, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 3765.37109375, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2427.7890625, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 3434.96484375, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4420.41015625, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3876.875, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 3744.05078125, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 5002.70703125, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 4559.32421875, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 3270.5, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2974.96875, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2759.0625, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 4624.296875, + "entries": 1132458.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1249.97265625, + "entries": 1132458.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1143.81640625, + "entries": 1132458.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1249.31640625, + "entries": 1132458.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1039.23046875, + "entries": 1132458.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1157.4296875, + "entries": 1132458.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4340.115234375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4339.216796875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2966.3681640625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3692.9892578125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2969.9619140625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 5032.0888671875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 7633.57421875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 4217.509765625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3396.4150390625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3442.064453125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 231.2958984375, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 927.32421875, + "entries": 223498.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 983.484375, + "entries": 223498.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 984.26171875, + "entries": 223498.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 410.37890625, + "entries": 223498.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 411.31640625, + "entries": 223498.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 855.6015625, + "entries": 223498.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 408.5390625, + "entries": 223498.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 577.3134765625, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3236.66015625, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2197.35546875, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 3246.44921875, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3272.09765625, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2259.71875, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 3395.03515625, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3118.703125, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2360.1015625, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2618.41796875, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1128.03125, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4240.6796875, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3841.515625, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 4345.9921875, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4130.90625, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 4449.7734375, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 3371.24609375, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 4486.20703125, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 2364.8046875, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 3033.02734375, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 3059.953125, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 1724.30078125, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 2288.8984375, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1083.3125, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 2479.6171875, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2638.77734375, + "entries": 1024000.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1122.94140625, + "entries": 1024000.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1418.98046875, + "entries": 1024000.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1328.25390625, + "entries": 1024000.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1520.77734375, + "entries": 1024000.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1124.60546875, + "entries": 1024000.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 989.41015625, + "entries": 1024000.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 962.125, + "entries": 1024000.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1057.3828125, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 973.41796875, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 928.82421875, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1035.87890625, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1035.08984375, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1036.3203125, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 999.3046875, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1349.3125, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1034.4375, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1026.2734375, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 997.5, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 1098.3359375, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 976.19140625, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 893.8515625, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 851.890625, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 1074.015625, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1028.390625, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1026.52734375, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 997.16015625, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1003.96484375, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1030.55078125, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1035.66796875, + "entries": 1024000.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 769.2099609375, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 4569.37109375, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 4572.578125, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1388.4453125, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1385.6953125, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 3008.8046875, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 4384.953125, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 6558.58984375, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 4464.14453125, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 3949.1640625, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 4424.78515625, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 4668.5, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 9101.828125, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 8388.89453125, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 6519.203125, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 8981.015625, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 5008.359375, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 5141.0, + "entries": 2203899.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1383.578125, + "entries": 2203899.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 1538.12109375, + "entries": 2203899.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 1555.3671875, + "entries": 2203899.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1867.1328125, + "entries": 2203899.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2334.375, + "entries": 2203899.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1383.52734375, + "entries": 2203899.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 3510.3828125, + "entries": 2203899.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1497.58203125, + "entries": 2203899.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1525.921875, + "entries": 2203899.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1477.53515625, + "entries": 2203899.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1334.9765625, + "entries": 2203899.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1367.265625, + "entries": 2203899.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1501.14453125, + "entries": 2203899.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1206.94921875, + "entries": 2203899.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 340.0703125, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2081.376953125, + "entries": 704094.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 2320.119140625, + "entries": 704094.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 586.412109375, + "entries": 704094.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 588.2470703125, + "entries": 704094.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 705.388671875, + "entries": 704094.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 722.3994140625, + "entries": 704094.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 749.0048828125, + "entries": 704094.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 587.95703125, + "entries": 704094.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 5025.583984375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4163.9833984375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4163.2978515625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4163.8701171875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4162.5595703125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4164.7099609375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4167.0400390625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 7631.7646484375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3973.51953125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3972.833984375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3970.4140625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3973.677734375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3971.96484375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3975.490234375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3575.19921875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4169.27734375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3959.7001953125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3394.138671875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4162.3896484375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3968.53125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3602.8720703125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 6879.92578125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 7075.4140625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 7277.171875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 7351.4521484375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 7084.8212890625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 198.876953125, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 21729.6435546875, + "entries": 13029058.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 21351.0966796875, + "entries": 13029058.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 24960.640625, + "entries": 13029058.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 7509.8525390625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 7421.3974609375, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 7552.28515625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 7539.16015625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 1023.16015625, + "entries": 2190003, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1460.4423828125, + "entries": 2190003, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1174.9658203125, + "entries": 2190003, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 340.755859375, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 2078.6259765625, + "entries": 704094.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2014.1728515625, + "entries": 704094.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 749.5029296875, + "entries": 704094.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 598.4052734375, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 4938.65625, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 5045.5625, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 6337.66015625, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 5479.50390625, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 4348.23828125, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 4402.828125, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 6273.078125, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 5191.77734375, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 3407.2421875, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 5293.06640625, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 5141.58203125, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 4964.71484375, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 4816.765625, + "entries": 2243386.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 480.318359375, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1964.7265625, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 2232.69140625, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 2446.8046875, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 2353.3671875, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1955.51171875, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1957.29296875, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1949.29296875, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1826.02734375, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1670.05078125, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 2345.48828125, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1547.74609375, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 2978.69921875, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 2002.515625, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1792.7421875, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 2022.125, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1376.48828125, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1998.5078125, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1856.65234375, + "entries": 645661.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 907.4375, + "entries": 645661.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1074.1640625, + "entries": 645661.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1124.5859375, + "entries": 645661.0000000001, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 769.8203125, + "entries": 645661.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 788.19921875, + "entries": 645661.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 855.65625, + "entries": 645661.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1089.58203125, + "entries": 645661.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1046.9921875, + "entries": 645661.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 831.48046875, + "entries": 645661.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 4161.9306640625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3941.529296875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3589.0107421875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1325.705078125, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 31793.5009765625, + "entries": 16618029.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 28817.97265625, + "entries": 16618029.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 28337.2109375, + "entries": 16618029.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 20520.453125, + "entries": 16618029.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 2261.62109375, + "entries": 16618029.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 25487.826171875, + "entries": 16618029.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 4666.2021484375, + "entries": 16618029.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 3720.41796875, + "entries": 16618029.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 2491.77734375, + "entries": 16618029.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 6681.53125, + "entries": 16618029.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 80.115234375, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 12278.6025390625, + "entries": 6565371.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2951.9013671875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2551.587890625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2219.978515625, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 5996.748046875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2452.9013671875, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3326.533203125, + "entries": 2190003, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1486.9521484375, + "entries": 2190003, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1452.8662109375, + "entries": 2190003, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 829.3544921875, + "entries": 2190003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 6388.99609375, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 6110.55859375, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 6359.140625, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 6125.04296875, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 3865.76953125, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 2507.2578125, + "entries": 2614370.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1077.03125, + "entries": 1615772.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3120.4033203125, + "entries": 16787775.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1028.1328125, + "entries": 1024000.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1185.04296875, + "entries": 2203899.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 731.40234375, + "entries": 645661.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 5578.60546875, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 7523.76171875, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 6104.5390625, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 4562.62890625, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 7485.29296875, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 6253.66796875, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 6853.46875, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 6802.55859375, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 7788.796875, + "entries": 2614370.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1969.63671875, + "entries": 2614370.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0439453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.4150390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.814453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.701171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.701171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.7294921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.38671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.701171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.6728515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.3583984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 359.8896484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.9150390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.2001953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.7705078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.8447265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.3916015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.5869140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 279.2392578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 239.1142578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 269.2119140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 267.0849609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 409.6162109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 408.7021484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 396.4638671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 396.0771484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.4013671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 406.6083984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.87109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.87109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 397.951171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.298828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 379.912109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.9912109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.2958984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.7529296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 241.8017578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.0498046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.931640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.24609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.44921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.20703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.6953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.392578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.5478515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.052734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.3759765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.912109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.7412109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.537109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.5625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.6982421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.669921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.947265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.392578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.400390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.333984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 406.111328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.611328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 373.947265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 398.2314453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 407.1494140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.330078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.880859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.419921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.994140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 192.880859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.478515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.99609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 285.810546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 309.439453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 353.580078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 377.978515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.330078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.4716796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.6728515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.6728515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.6728515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.6728515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.6728515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.330078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.7294921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.330078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.330078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.7294921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.0126953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.8291015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.6845703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.1103515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.3408203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.4033203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 253.8525390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 280.6025390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 400.3251953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 406.6845703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 258.3779296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 302.0224609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 308.7294921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.181640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.689453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.189453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.7861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.185546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.7861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.185546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.42578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 219.1875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.6708984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.6357421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.435546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.4248046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 142.0791015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.9189453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.748046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 175.7236328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 175.5478515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.384765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.365234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.26171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 167.005859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.470703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.8388671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.951171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.38671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 180.56640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0439453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.7470703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0439453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.3134765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.6318359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.5419921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.1591796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.34765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.51171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.1337890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.4658203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 265.0986328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.5009765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.701171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.1591796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.2158203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 333.1962890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 267.9033203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.6416015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.1142578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.2744140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.8330078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.9189453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.8681640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 271.7470703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 309.9853515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 367.2509765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 374.9462890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 372.1337890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 369.5361328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 363.4736328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.837890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.255859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.9140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.681640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.82421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.619140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.1640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.380859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 230.9375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.455078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.9296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 286.0546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 294.392578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 340.2890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 350.455078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 349.79296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 360.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 349.1640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 359.353515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.3310546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.12890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.3662109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 276.3974609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 325.1708984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.2607421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 410.5146484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.3984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 403.1787109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.61328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.69140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.7861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.2041015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.4228515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.49609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0439453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0439453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.6513671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.7587890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.4326171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.6572265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.6669921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.4345703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.1279296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.0244140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.2724609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.1884765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.4912109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.857421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.5830078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.1240234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.595703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.935546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.7578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.8466796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.2314453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.1376953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 288.8642578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 385.8603515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.955078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.2099609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 157.0068359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 269.5361328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 391.0712890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 413.6884765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.498046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.8095703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.6142578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.0810546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.2216796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.7861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 144.236328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 94.8662109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 130.6240234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 201.87109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 131.3779296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 124.3203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 95.8623046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 79.916015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.3447265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 84.9208984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 189.1728515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 79.5380859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.9658203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.7578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.814453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.94921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 73.3388671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.6083984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 74.62109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.869140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 77.66015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 72.61328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.185546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 69.185546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.2138671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 71.7763671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 181.4052734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.3583984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 146.29296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 96.9228515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 132.6806640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 203.927734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 133.4345703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 126.376953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 97.9189453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 81.97265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.4013671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 86.9775390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 191.2294921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 81.5947265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.0224609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.814453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.87109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.005859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 75.3955078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.6650390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 76.677734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.92578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 74.669921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 71.2421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 71.2421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.2705078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 73.8330078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 183.4580078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.7578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.41796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.33984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.8916015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.1103515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.017578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.6455078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.1064453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.130859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.0380859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.1982421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.4326171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.025390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.337890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 138.560546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.822265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.26171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0908203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.060546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.0478515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.4072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.5380859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.95703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.7822265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.0234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.7822265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.2265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.1103515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.39453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.2744140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.669921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.775390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.8876953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1962890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0791015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.3046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.6435546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.4462890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.673828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.6552734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.470703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.5224609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.9033203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.5810546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8564453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.841796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.830078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.2861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.193359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.32421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.19921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.232421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.623046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.419921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.599609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.7353515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.880859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.2255859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.2392578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.580078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.369140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.568359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.6220703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.970703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.0478515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.361328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.2900390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.2861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.5009765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4970703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.1181640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.7197265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.8486328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 163.5703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 156.421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 171.50390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 183.8125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 180.5, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 172.9697265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.091796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.0986328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.169921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.86328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.9599609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.0849609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.8984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.1865234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.6796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.0068359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.5, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4521484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.4990234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.201171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.8193359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.9013671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.01171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.2060546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.0693359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.1337890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.0283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.517578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.8056640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.6259765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.458984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4619140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.490234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.490234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.134765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.10546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.2900390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.5625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.34765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.5, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.25390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.25390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.958984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 156.63671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 140.9443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.9404296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.7802734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8115234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.16015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.53515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.349609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3349609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0400390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.470703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9228515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.888671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.4453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.9033203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.0087890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.916015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.9443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.9111328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.58203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.37109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.1630859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.025390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.7724609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.681640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.763671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.1640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.548828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.4130859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.40234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2998046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9541015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.173828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.80859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.8505859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.974609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.01171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.7060546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.4873046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.087890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.673828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.7021484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.404296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.6826171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.572265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.736328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.6005859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.2177734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 325.748046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.568359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.607421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.130859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.962890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.005859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.794921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1572265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1572265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8427734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8427734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.12890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.12890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.12890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.38671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.4609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.56640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.0146484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.2099609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.9130859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.7060546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.0146484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.0732421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.4755859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3818359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4951171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6904296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.857421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.982421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.318359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.544921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.466796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.208984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.619140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.083984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.400390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.345703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.1220703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.8212890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.6064453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.6259765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.5595703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.7939453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.69921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.6318359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.8349609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.4873046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.4521484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.9072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.666015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.7080078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.8984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.7509765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6982421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.5029296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6396484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.7099609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.2373046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.2216796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2412109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.8037109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.4990234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.2216796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 164.486328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 401.3564453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 325.3759765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 307.4150390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 293.7587890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 251.7158203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.814453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.66796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.76171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.7568359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 193.193359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.044921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 188.1650390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 187.451171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 251.4306640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 221.2822265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 213.6328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.0595703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.3994140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.8408203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.7978515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.0556640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.1611328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.470703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.591796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.791015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.5927734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.4208984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.2578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.044921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.30859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.556640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.3603515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.4931640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.6064453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.2158203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.9921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.0556640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.6572265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.48046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.73828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.35546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.6884765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.1298828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.2666015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.4345703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.0751953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.9736328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.4853515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.3916015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.00390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.33203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4267578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.0107421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.349609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.392578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.431640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.4375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.33203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.0576171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.5224609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.2314453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.091796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.9111328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.349609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.5361328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1728515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.2109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.4072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.8388671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.9375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.5810546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.9072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.5341796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.98046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.1455078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.9150390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.9384765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.541015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1611328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.2529296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.97265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.7294921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.9677734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.2060546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4541015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.576171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.755859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.99609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.59765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.564453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.228515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.583984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.615234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.40625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.35546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.744140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.814453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.900390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.962890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.521484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.818359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3837890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.2666015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.26953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.5478515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.7041015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.9267578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.0908203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.1923828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.1572265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.69140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.26953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.5703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.1240234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.5537109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.5009765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.73046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0556640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.244140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.54296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.6259765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 187.2802734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 142.1005859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 351.17578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 201.9052734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.8818359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.1474609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.9404296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.2138671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.8291015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.2783203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.2431640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.8115234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.548828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.306640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.091796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.794921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.8798828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.216796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.8642578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.6474609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.732421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.9736328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.4091796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 261.5947265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 234.7314453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 269.748046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 235.033203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.01171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.8623046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.7998046875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.3173828125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.6201171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.2041015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.1845703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.26171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.0439453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.1845703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.5087890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.3720703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.3486328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.5390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.6494140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.541015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.716796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.169921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.892578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.8056640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9599609375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.0234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.84765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.59375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.0185546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.771484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.8310546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.9814453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.35546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.39453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.7392578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.9560546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.0283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.439453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.533203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.0556640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.04296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.197265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.5283203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.87109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.87109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.87109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.8603515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.130859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 163.4140625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.0859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.6982421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3271484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.2041015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.1650390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.3564453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.2275390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.708984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.072265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4150390625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.38671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.38671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.38671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.7294921875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.443359375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.1005859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.1005859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.7861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.12890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.4716796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3583984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.38671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.7861328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.306640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.0126953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.185546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.2421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.87109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.1376953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.9228515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6533203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.2939453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 146.46484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.453125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.017578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.990234375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.845703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.197265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.7158203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4033203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.16015625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.33984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.52734375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.55078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.7578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.76953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.34765625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.626953125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.970703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.01171875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.296875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.203125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.96484375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.4375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.6328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.80078125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.6328125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.55859375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 223.17578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.63671875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.8125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.53515625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.0546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.0546875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.12890625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.84375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.81640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.578125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.81640625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.91796875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.8984375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.697265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.697265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7109375, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.71875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.72265625, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.71875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.70703125, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.71875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7421875, + "entries": 2190003, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 71.5771484375, + "entries": 2190003, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 83.9482421875, + "entries": 2190003, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 5937.6416015625, + "entries": 2190003, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 18280.6005859375, + "entries": 176394.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11470.0078125, + "entries": 2190003, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 11461.1904296875, + "entries": 2190003, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 104460.330078125, + "entries": 12083664.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 12662.7333984375, + "entries": 2190003, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 12662.5966796875, + "entries": 2190003, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 178708.7353515625, + "entries": 1615772.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 253989.7724609375, + "entries": 2116254.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1497.25390625, + "entries": 16311.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 71561.9609375, + "entries": 3147591.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 701882.9580078125, + "entries": 16787775.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 20591.8974609375, + "entries": 2190003, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 84419.359375, + "entries": 1132458.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 42030.3037109375, + "entries": 2190003, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 10395.259765625, + "entries": 223498.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 106934.4111328125, + "entries": 1024000.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 111953.4443359375, + "entries": 2203899.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 8680.9755859375, + "entries": 704094.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 65055.9091796875, + "entries": 2190003, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11523.1162109375, + "entries": 2190003, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11733.79296875, + "entries": 2190003, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 6879.92578125, + "entries": 2190003, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7075.4140625, + "entries": 2190003, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 7277.171875, + "entries": 2190003, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7351.4521484375, + "entries": 2190003, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 7084.8212890625, + "entries": 2190003, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 68240.2578125, + "entries": 13029058.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 7509.8525390625, + "entries": 2190003, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 7421.3974609375, + "entries": 2190003, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 7552.28515625, + "entries": 2190003, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 7539.16015625, + "entries": 2190003, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 1023.16015625, + "entries": 2190003, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1460.4423828125, + "entries": 2190003, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1174.9658203125, + "entries": 2190003, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 66239.0810546875, + "entries": 2243386.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 45976.369140625, + "entries": 645661.0000000001, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 11692.470703125, + "entries": 2190003, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 156104.21875, + "entries": 16618029.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 12358.7177734375, + "entries": 6565371.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 22439.46875, + "entries": 2190003, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 93109.0771484375, + "entries": 2614370.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 40851.759765625, + "entries": 2190003, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 5227.54296875, + "entries": 2190003, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 63.3583984375, + "entries": 2190003, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 65.7578125, + "entries": 2190003, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 45082.7421875, + "entries": 2190003, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 65.7578125, + "entries": 2190003, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 7, + "allsize": 0.095703125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.095703125, + "entries": 7, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.095703125, + "entries": 7, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 3003, + "allsize": 2.7001953125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2177734375, + "entries": 3003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.7998046875, + "entries": 3003, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2236328125, + "entries": 3003, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.21875, + "entries": 3003, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.240234375, + "entries": 3003, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2177734375, + "entries": 3003, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.7998046875, + "entries": 3003, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2236328125, + "entries": 3003, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.21875, + "entries": 3003, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.240234375, + "entries": 3003, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30558/JetHT_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30558/JetHT_doc.html new file mode 100644 index 000000000..64a29c5a8 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30558/JetHT_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for 0290F73B-A51C-A441-AEC1-8429F9CC8AA8.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30558/JetHT_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30558/JetHT_doc.json new file mode 100644 index 000000000..e44f552ad --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30558/JetHT_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "0290F73B-A51C-A441-AEC1-8429F9CC8AA8.root", + "filesize": 2204277.8447265625, + "trees": { + "Events": { + "entries": 1763723, + "allsize": 2198729.341796875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 53.6708984375, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 59.1669921875, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 4712.4658203125, + "entries": 1763723, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 226.3310546875, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 581.3037109375, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 656.1328125, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 580.2763671875, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 580.7802734375, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 585.697265625, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 549.6884765625, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 531.1123046875, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 656.69140625, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 437.8212890625, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 748.3623046875, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 589.6904296875, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 561.3662109375, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 596.8740234375, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 586.3349609375, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 626.814453125, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 576.017578125, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 701.470703125, + "entries": 128029.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 341.3583984375, + "entries": 128029.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 380.826171875, + "entries": 128029.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 302.5927734375, + "entries": 128029.99999999999, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 391.048828125, + "entries": 128029.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 351.052734375, + "entries": 128029.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 304.8486328125, + "entries": 128029.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 361.8095703125, + "entries": 128029.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 354.6767578125, + "entries": 128029.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 353.3525390625, + "entries": 128029.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 3346.4560546875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3148.33203125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2829.3056640625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 3357.02734375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3143.6455078125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2791.837890625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 938.9423828125, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 8389.1005859375, + "entries": 9294088.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 21761.0966796875, + "entries": 9294088.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 14019.3779296875, + "entries": 9294088.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 21868.4990234375, + "entries": 9294088.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 15179.8740234375, + "entries": 9294088.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 4004.9072265625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 6152.318359375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 4041.7607421875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 6147.2578125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 565.5908203125, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3294.306640625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 3290.19140625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 982.669921875, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 982.359375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3836.9619140625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1825.564453125, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1824.8388671875, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1777.755859375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 1781.287109375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4029.666015625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2749.8525390625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4078.8603515625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2760.3359375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 4668.47265625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3891.37890625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2969.66015625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 4313.755859375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 3062.287109375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3849.6708984375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 3179.5869140625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 3247.27734375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 3897.0380859375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5887.0693359375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 5631.7685546875, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 4352.7001953125, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 4479.4482421875, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 5963.6494140625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 5819.0791015625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 4289.435546875, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 5951.3056640625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3338.9501953125, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 3354.1416015625, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3402.6328125, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 3730.4375, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 3090.0986328125, + "entries": 1413477.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1240.3681640625, + "entries": 1413477.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1082.8115234375, + "entries": 1413477.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1656.4111328125, + "entries": 1413477.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1241.89453125, + "entries": 1413477.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1396.07421875, + "entries": 1413477.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1299.583984375, + "entries": 1413477.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 3046.4296875, + "entries": 1413477.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 2719.671875, + "entries": 1413477.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 941.7412109375, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 880.32421875, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1104.1826171875, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1611.6220703125, + "entries": 1413477.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1111.4716796875, + "entries": 1413477.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 891.646484375, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 905.748046875, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 936.8837890625, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 909.71875, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 935.3671875, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 979.5146484375, + "entries": 1413477.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 909.5849609375, + "entries": 1413477.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 566.7841796875, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 3037.2822265625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 5708.666015625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 6368.453125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 5640.26171875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 6173.67578125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 5849.232421875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 5861.21484375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 5898.9560546875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 6096.6787109375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 6045.4345703125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 5678.5166015625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 6095.25, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 5823.62109375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 6135.4169921875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 5705.3212890625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 6055.38671875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 5671.91015625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 6229.939453125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 5376.03125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 5721.185546875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 6458.1435546875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 6245.8701171875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 6246.6162109375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 7157.44921875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 5598.6416015625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 5732.033203125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 4814.2001953125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 3927.9462890625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 5554.615234375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 6296.427734375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 6076.599609375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 6114.521484375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 6511.9541015625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 6344.7119140625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 6292.0361328125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 5357.8671875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 6486.0537109375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 6223.8505859375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 6250.4833984375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 5779.3759765625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 7074.703125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 5318.8037109375, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 3689.919921875, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 5704.6181640625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 5684.5517578125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 5661.9853515625, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 5657.1064453125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 3744.7470703125, + "entries": 2540240.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1276.775390625, + "entries": 2540240.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1844.1357421875, + "entries": 2540240.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1842.9833984375, + "entries": 2540240.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 1768.3857421875, + "entries": 2540240.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 1697.9873046875, + "entries": 2540240.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 2993.884765625, + "entries": 2540240.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 134.5390625, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 314.1220703125, + "entries": 34563.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 284.7099609375, + "entries": 34563.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 283.6201171875, + "entries": 34563.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 266.310546875, + "entries": 34563.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 300.234375, + "entries": 34563.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 187.0693359375, + "entries": 34563.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 648.1572265625, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 6006.2255859375, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5897.9951171875, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 6329.8271484375, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 4784.3193359375, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3990.59375, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 6343.4794921875, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 5220.1669921875, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4368.529296875, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2838.376953125, + "entries": 2266013.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1534.94921875, + "entries": 2266013.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1583.44921875, + "entries": 2266013.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1570.43359375, + "entries": 2266013.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1286.40625, + "entries": 2266013.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 958.0615234375, + "entries": 2266013.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1204.162109375, + "entries": 2266013.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1007.576171875, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 9940.328125, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 20553.640625, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 20169.0625, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 18182.91796875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 19048.60546875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 24351.3359375, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 20013.8671875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 22442.91796875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 20686.0234375, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 4140.75, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 16098.375, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 14562.4140625, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 29360.09765625, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4392.45703125, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4395.16015625, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 23028.796875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 3515.64453125, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 18591.99609375, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 16607.01171875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 16404.71484375, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 28754.734375, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 22774.6953125, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 20037.35546875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 20362.609375, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 17821.38671875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 18019.03125, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 15033.16796875, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 17923.578125, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 14912.703125, + "entries": 12679075.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3382.40625, + "entries": 12679075.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2111.14453125, + "entries": 12679075.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2170.421875, + "entries": 12679075.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2633.29296875, + "entries": 12679075.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2565.1484375, + "entries": 12679075.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2956.3359375, + "entries": 12679075.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2258.40234375, + "entries": 12679075.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3232.8125, + "entries": 12679075.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2926.0, + "entries": 12679075.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 4495.65625, + "entries": 12679075.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 9851.5888671875, + "entries": 12679075.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1894.470703125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1767.2001953125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1795.3046875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1815.1337890625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 665.83203125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 289.7470703125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 692.4892578125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 660.9111328125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 672.0283203125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 2191.1494140625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2224.826171875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 489.3203125, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 4416.740234375, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1452.1611328125, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3009.037109375, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3024.1318359375, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2161.271484375, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3100.986328125, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2113.3173828125, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2972.0478515625, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 4162.513671875, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2308.2626953125, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 3245.7294921875, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2130.0029296875, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2983.85546875, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3963.21484375, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3572.796875, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 3227.9248046875, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 4370.396484375, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 3986.953125, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2810.876953125, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2550.791015625, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2379.3525390625, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 4002.76171875, + "entries": 996963.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1043.990234375, + "entries": 996963.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 970.642578125, + "entries": 996963.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1043.5595703125, + "entries": 996963.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 858.84765625, + "entries": 996963.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 964.15234375, + "entries": 996963.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 3479.072265625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 3478.927734375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2443.0439453125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3007.8720703125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2441.2080078125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 4041.4208984375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 6116.3203125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 3331.451171875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2796.0595703125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2787.099609375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 219.8349609375, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 928.326171875, + "entries": 235070.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 985.7060546875, + "entries": 235070.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 986.8076171875, + "entries": 235070.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 385.5087890625, + "entries": 235070.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 386.0078125, + "entries": 235070.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 851.7451171875, + "entries": 235070.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 383.94921875, + "entries": 235070.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 523.8017578125, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3330.509765625, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2211.4697265625, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 3335.8125, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3364.2119140625, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2271.9921875, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 3517.373046875, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3192.2451171875, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2434.5087890625, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2649.6953125, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1046.5458984375, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4639.6552734375, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4375.5458984375, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 4713.1142578125, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4574.9970703125, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 4780.5283203125, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 3475.822265625, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 4766.7666015625, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 2411.46875, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 3137.400390625, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 3101.0859375, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 1587.818359375, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 2355.9052734375, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1001.0556640625, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 2362.5263671875, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2593.6064453125, + "entries": 1125759.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1044.9462890625, + "entries": 1125759.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1334.6572265625, + "entries": 1125759.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1243.23046875, + "entries": 1125759.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1462.9892578125, + "entries": 1125759.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1046.44140625, + "entries": 1125759.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 903.291015625, + "entries": 1125759.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 905.9169921875, + "entries": 1125759.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 942.7216796875, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 868.1494140625, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 812.9697265625, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 938.3623046875, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 929.3583984375, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 943.2958984375, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 915.16015625, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1346.1181640625, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 928.392578125, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 908.6904296875, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 876.4150390625, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 953.234375, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 846.6181640625, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 755.4375, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 746.7783203125, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 919.806640625, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 888.2978515625, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 938.3642578125, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 872.3671875, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 883.001953125, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 911.373046875, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 942.2587890625, + "entries": 1125759.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 635.2880859375, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3955.26171875, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 3955.201171875, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1114.5546875, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1112.427734375, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2540.587890625, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 3706.951171875, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 5544.015625, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 3780.640625, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 3358.0869140625, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 3531.205078125, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 3792.6103515625, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 7789.7138671875, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 7483.3349609375, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 5502.98046875, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 7709.7958984375, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 4199.5498046875, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 4302.482421875, + "entries": 1894164.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1110.8662109375, + "entries": 1894164.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 1207.9150390625, + "entries": 1894164.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 1223.71875, + "entries": 1894164.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1537.90625, + "entries": 1894164.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1922.4208984375, + "entries": 1894164.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1110.978515625, + "entries": 1894164.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 2835.873046875, + "entries": 1894164.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1221.7080078125, + "entries": 1894164.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1224.326171875, + "entries": 1894164.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1197.271484375, + "entries": 1894164.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1027.8857421875, + "entries": 1894164.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1054.7568359375, + "entries": 1894164.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1209.150390625, + "entries": 1894164.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1008.5869140625, + "entries": 1894164.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 336.65625, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 2224.1025390625, + "entries": 757518.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 2481.3876953125, + "entries": 757518.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 612.041015625, + "entries": 757518.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 613.689453125, + "entries": 757518.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 740.146484375, + "entries": 757518.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 759.646484375, + "entries": 757518.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 788.294921875, + "entries": 757518.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 613.474609375, + "entries": 757518.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 4033.658203125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 3342.3466796875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 3341.8330078125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 3342.4951171875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 3342.6455078125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 3342.7138671875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 3346.5205078125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 6133.9052734375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3155.3125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3154.798828125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3157.46875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3157.029296875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3154.9453125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3158.052734375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3056.63671875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 3350.29296875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3139.8212890625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2787.779296875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 3340.6708984375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3163.84375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3069.3642578125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 5525.73828125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 5677.2890625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 5788.953125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 5917.8935546875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 5726.5595703125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 149.927734375, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 17526.8427734375, + "entries": 10501844.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 17174.3857421875, + "entries": 10501844.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 20308.42578125, + "entries": 10501844.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 6148.2431640625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 6008.8232421875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 6169.140625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 6149.61328125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 885.765625, + "entries": 1763723, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1187.3564453125, + "entries": 1763723, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 983.0595703125, + "entries": 1763723, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 337.169921875, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 2220.5595703125, + "entries": 757518.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 2147.9697265625, + "entries": 757518.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 788.615234375, + "entries": 757518.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 582.8037109375, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 8348.548828125, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 8547.705078125, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 10977.4453125, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 9400.6845703125, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 7244.4228515625, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 7278.3095703125, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 10839.4140625, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 8778.9912109375, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 5418.017578125, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 9077.1416015625, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 8733.7392578125, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 8365.9501953125, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 8059.7353515625, + "entries": 4304056.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 362.048828125, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1418.19140625, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1586.4931640625, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1725.21484375, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1667.2392578125, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1385.20703125, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1386.48046875, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1401.5380859375, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1320.314453125, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1217.2734375, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1662.7392578125, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1125.212890625, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 2094.171875, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1429.4765625, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1267.6201171875, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1445.4736328125, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 933.7578125, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1441.0078125, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1341.46875, + "entries": 446751.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 661.6328125, + "entries": 446751.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 778.8037109375, + "entries": 446751.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 819.15234375, + "entries": 446751.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 556.8779296875, + "entries": 446751.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 560.271484375, + "entries": 446751.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 621.7568359375, + "entries": 446751.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 778.123046875, + "entries": 446751.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 735.94921875, + "entries": 446751.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 579.1318359375, + "entries": 446751.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 3338.3173828125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3226.396484375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 2978.1748046875, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1116.728515625, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 28698.47265625, + "entries": 14615911.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 25572.2626953125, + "entries": 14615911.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 25197.4033203125, + "entries": 14615911.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 17165.177734375, + "entries": 14615911.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1817.953125, + "entries": 14615911.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 21615.064453125, + "entries": 14615911.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 3903.9765625, + "entries": 14615911.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 3170.7529296875, + "entries": 14615911.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1940.419921875, + "entries": 14615911.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 5759.984375, + "entries": 14615911.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 58.373046875, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 9860.76171875, + "entries": 5289399.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2371.5771484375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2032.177734375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1766.455078125, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 4818.677734375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1957.3271484375, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2773.775390625, + "entries": 1763723, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1169.9130859375, + "entries": 1763723, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1143.7060546875, + "entries": 1763723, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 739.1435546875, + "entries": 1763723, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 6878.6494140625, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 6548.1484375, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 6849.0078125, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 6564.5263671875, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 3963.4599609375, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 2496.1279296875, + "entries": 2957874.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 871.0234375, + "entries": 1413477.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2558.4560546875, + "entries": 12679075.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 911.33203125, + "entries": 1125759.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 948.982421875, + "entries": 1894164.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 533.3935546875, + "entries": 446751.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 5919.7431640625, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 8104.6640625, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 6566.9384765625, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 4870.1806640625, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 8050.640625, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 6745.4560546875, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 7367.736328125, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 7303.673828125, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 8426.912109375, + "entries": 2957874.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1962.40234375, + "entries": 2957874.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.0009765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.0283203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.826171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.744140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.744140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.5146484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.744140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.9736328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.4873046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.23046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 323.2724609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.1728515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.8720703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 198.9892578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 206.9853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.5791015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.3681640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 305.3056640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 301.0048828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 308.2197265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.7529296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 310.0966796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 310.9169921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 311.2685546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 311.5927734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 312.0693359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 312.3583984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.3671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.3671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 295.244140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 311.291015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 315.994140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.9443359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.2802734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.1005859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.2080078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.8271484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.53125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.46484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.53125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.4453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.134765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.9892578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.900390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.8330078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.177734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.5537109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.599609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.37890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.5458984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.451171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.404296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.357421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.935546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.787109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 310.955078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.431640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 325.423828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.3408203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 216.3095703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.251953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.642578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.712890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.962890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.28515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 224.560546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.791015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.443359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 252.560546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.5693359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.9736328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.9736328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.9736328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.9736328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.9736328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.5146484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.5146484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.8759765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.9228515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.0908203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.4970703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.5205078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 192.5634765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 195.0322265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.8759765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 287.3330078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 292.3798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.8505859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 320.9990234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 327.6513671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 220.931640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.341796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.94140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.013671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.0556640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.0556640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.8515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.44921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.0615234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.3193359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.357421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.6123046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.5205078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.3837890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.033203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.1533203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.9462890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.794921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.240234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.8984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.166015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.333984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.5263671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.314453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.0703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.0009765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.5947265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.0009765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.7666015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.8466796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.8623046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.9873046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.40234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.65625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 144.6298828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.0087890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.0634765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.5634765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.744140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.8857421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.0556640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 306.3837890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 284.5283203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.8359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.8408203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.8291015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.6767578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.5283203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.6416015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.7001953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 231.6611328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 255.5400390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 315.8916015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 322.9853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 323.2705078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 323.4384765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 324.0830078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.908203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.216796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.8359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.408203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.84375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.404296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.0625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.525390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.91015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.392578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.1171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.427734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.208984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 319.203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 318.025390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 326.0703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 324.958984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 325.98828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 324.939453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.3349609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.3125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.5341796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 216.5185546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 241.4560546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 300.8779296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 311.5654296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.2578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 318.1748046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.9140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.71484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.0556640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.0869140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.4345703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.5859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.0009765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.0009765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8623046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.8916015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.6005859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.3017578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.8232421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.8955078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.3505859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.1845703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.2099609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.2236328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.2177734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.876953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.5205078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.7333984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.947265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.287109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.28515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.6513671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.0986328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.1416015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.9306640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 317.1884765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.759765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.3154296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.7099609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.0166015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 319.3681640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 327.5205078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.580078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.4970703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.3408203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.4560546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6240234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.0556640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 89.587890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.9521484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 93.5654296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 149.4609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 93.0537109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 73.55078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.4873046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.201171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.8994140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.7216796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 146.2275390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.7333984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.8291015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 49.28515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 49.40234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.9873046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.4560546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.95703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.314453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.8828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.09375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.6240234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.7685546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 118.7177734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 47.4873046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 91.12890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.4931640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 95.1064453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 151.001953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 94.5947265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 75.091796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 59.0283203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.7421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.4404296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.2626953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 147.7685546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.2744140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.3701171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 50.826171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.46484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 50.943359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.5283203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.9970703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.498046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 51.85546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.962890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.39453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.39453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.1650390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.3095703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 120.2509765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.28515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 186.17578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 147.296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 220.7236328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 196.1025390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 260.685546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 252.9111328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 230.6103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 275.615234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 247.9169921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.6630859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.4248046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.759765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.423828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 283.349609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.822265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 167.046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.2705078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.322265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.6845703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.7548828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.6318359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.17578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.1025390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.88671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.0009765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.3203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.5517578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.8603515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.908203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.634765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.107421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.1884765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.7080078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.0439453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.76953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.47265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.9912109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.6181640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.037109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.7294921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.826171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5849609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.2236328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.7255859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.1455078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.884765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.861328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.1845703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.857421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.91015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.294921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.751953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.916015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.642578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.1884765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.013671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.2216796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.9384765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.302734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.908203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.966796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8173828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.861328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.7001953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.767578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.7314453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.9072265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.7822265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.9541015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.7119140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.8056640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.8759765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.8994140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.9609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.34765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 148.63671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 214.9375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 317.3759765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.259765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.6494140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.341796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.3515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.6669921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.4716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.1796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.1904296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.8984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.1669921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.87890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.4951171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.6162109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.501953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.4404296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.1787109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.70703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.9755859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.7412109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.0009765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5361328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.876953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.1494140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.9189453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.0322265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.939453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.939453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.818359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.1689453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.0703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.43359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.33984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.39453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.39453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.21484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.7802734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4599609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.2490234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5224609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.5703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.48046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.091796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.8310546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.1923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.259765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.4970703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.212890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.49609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.1220703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.4150390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.974609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0029296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.65234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.7470703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.99609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.3828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.7021484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.068359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.9443359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.255859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.998046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.134765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.5068359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.8310546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.3056640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.201171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.4013671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.537109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.48046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.7138671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.0693359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.748046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.1279296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.990234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.9482421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.611328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.529296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.3896484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.8466796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.552734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.216796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.705078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 191.248046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 170.505859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 206.353515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 179.888671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0830078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0830078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5966796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5966796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.39453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.39453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.3125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.3125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.3125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.61328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.90625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.6787109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.1552734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.7060546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.6279296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.4755859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 215.9365234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 165.3388671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.4443359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.9833984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.8271484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.505859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.599609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.951171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.169921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.451171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 190.869140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 146.451171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.466796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.501953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.076171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.5986328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.4892578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.1455078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.7900390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.9228515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.1259765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.2421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.09765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.5771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3388671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.6787109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.4990234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.3212890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.380859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.0751953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.87890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 151.98828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.5439453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.3935546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.4326171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.0068359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.2607421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.6474609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.9013671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.6513671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.0498046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.6318359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 221.7646484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.685546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.7197265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.7861328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.4853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.2900390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.5283203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.826171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.85546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.63671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.3974609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.712890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.330078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.1220703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.982421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.2197265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.6181640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.91796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.4892578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.9345703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.0673828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.6962890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.5830078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.6298828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.396484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.287109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.978515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.1826171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.9677734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.99609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.048828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.16015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.783203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.4072265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.7275390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.4580078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.0205078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.90234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.2236328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.2080078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.3671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.75, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.12890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.4306640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.4501953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.5556640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6650390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.4423828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.5634765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.0205078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.44921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.0322265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.35546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.7490234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.001953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.990234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.052734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.63671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.2138671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.8232421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.5947265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.201171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.7080078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.966796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6533203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.9345703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.59375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.7275390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.0537109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.5, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.9833984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.7392578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.1748046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.89453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.7900390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.4697265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.2744140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.255859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0869140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.6669921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.2490234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.7998046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.3818359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.8369140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.970703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.052734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.66796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.05078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.896484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.892578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.892578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.939453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 176.26953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 155.8984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.791015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.814453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.865234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.958984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.650390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.345703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.4853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.5712890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.91796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1259765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1962890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.2783203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3486328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.0478515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.7158203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.0546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.8046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.8984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.0263671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.3349609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.3291015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.90625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.2548828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.224609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.35546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1728515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.1318359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5654296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.5234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0576171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.7490234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.6396484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.5498046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.0029296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.2861328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.5830078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.9384765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.7880859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.248046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.369140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.970703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.7041015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.517578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.3837890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.0419921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.392578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.0244140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.80078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.7646484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.9423828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.3525390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.943359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.044921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.28125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.9560546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.1474609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.6884765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.4873046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.0322265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.7236328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.49609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.7431640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.1025390625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.2939453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.8017578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0478515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.88671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5517578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.091796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.837890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.447265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.4697265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.6787109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.87890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.80078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.6796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.65234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.4716796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.951171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.6083984375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.2197265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.57421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.2822265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 224.8779296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 195.0517578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.685546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.283203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.6103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.111328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.642578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1103515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.6337890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.388671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.49609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.2578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.4169921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.3896484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.2431640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1376953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0869140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.23046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.697265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.771484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.0283203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.2578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.2578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.2578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.5146484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.798828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.5419921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.5419921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0556640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.3125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5693359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.8623046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.26171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0556640625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.935546875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.2197265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.853515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.39453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.3671875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0869140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.7119140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5166015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.2978515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.7109375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.7421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.47265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.2890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.177734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.322265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.970703125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.134765625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0830078125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.2783203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.04296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.734375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.28515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.44921875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.630859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.6142578125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.9736328125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.322265625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.7216796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.3232421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.123046875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.5234375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.5244140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.1953125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.5244140625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.80859375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 237.896484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.6591796875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.6396484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.7529296875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.521484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.521484375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.607421875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.39453125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3212890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.1171875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.3212890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.923828125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.66015625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.568359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 18.568359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.515625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.15625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.2890625, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.8203125, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.1875, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.24609375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 22.75, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.18359375, + "entries": 1763723, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 53.6708984375, + "entries": 1763723, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 59.1669921875, + "entries": 1763723, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 4712.4658203125, + "entries": 1763723, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 13514.33203125, + "entries": 128029.99999999999, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 9324.09375, + "entries": 1763723, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 9292.5107421875, + "entries": 1763723, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 82156.890625, + "entries": 9294088.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 10157.2255859375, + "entries": 1763723, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 10189.0185546875, + "entries": 1763723, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 152822.16015625, + "entries": 1413477.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 289169.2041015625, + "entries": 2540240.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1770.60546875, + "entries": 34563.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 54565.1328125, + "entries": 2266013.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 544274.62109375, + "entries": 12679075.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 14669.0927734375, + "entries": 1763723, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 73315.638671875, + "entries": 996963.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 33922.4755859375, + "entries": 1763723, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 10622.2001953125, + "entries": 235070.99999999997, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 106675.439453125, + "entries": 1125759.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 93857.03515625, + "entries": 1894164.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 9169.439453125, + "entries": 757518.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 52220.3623046875, + "entries": 1763723, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 9277.8935546875, + "entries": 1763723, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 9573.87890625, + "entries": 1763723, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 5525.73828125, + "entries": 1763723, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 5677.2890625, + "entries": 1763723, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 5788.953125, + "entries": 1763723, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 5917.8935546875, + "entries": 1763723, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 5726.5595703125, + "entries": 1763723, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 55159.58203125, + "entries": 10501844.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 6148.2431640625, + "entries": 1763723, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 6008.8232421875, + "entries": 1763723, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 6169.140625, + "entries": 1763723, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 6149.61328125, + "entries": 1763723, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 885.765625, + "entries": 1763723, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1187.3564453125, + "entries": 1763723, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 983.0595703125, + "entries": 1763723, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 111652.9091796875, + "entries": 4304056.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 32836.0224609375, + "entries": 446751.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 9542.888671875, + "entries": 1763723, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 135958.1962890625, + "entries": 14615911.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 9919.134765625, + "entries": 5289399.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 18033.609375, + "entries": 1763723, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 99357.4111328125, + "entries": 2957874.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 34217.3095703125, + "entries": 1763723, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 3708.70703125, + "entries": 1763723, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 47.4873046875, + "entries": 1763723, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 49.28515625, + "entries": 1763723, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 36664.5234375, + "entries": 1763723, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 49.28515625, + "entries": 1763723, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 9, + "allsize": 0.103515625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.103515625, + "entries": 9, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.103515625, + "entries": 9, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 684, + "allsize": 1.6376953125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.1904296875, + "entries": 684, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.8662109375, + "entries": 684, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.1962890625, + "entries": 684, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.19140625, + "entries": 684, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.193359375, + "entries": 684, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.1904296875, + "entries": 684, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.8662109375, + "entries": 684, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.1962890625, + "entries": 684, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.19140625, + "entries": 684, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.193359375, + "entries": 684, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30559/MET_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30559/MET_doc.html new file mode 100644 index 000000000..859223ff9 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30559/MET_doc.html @@ -0,0 +1,1640 @@ + + + + Documentation for 16D21B45-0388-FF40-8872-B398D762F652.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30559/MET_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30559/MET_doc.json new file mode 100644 index 000000000..4d5bbfd40 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30559/MET_doc.json @@ -0,0 +1,13954 @@ +{ + "filename": "16D21B45-0388-FF40-8872-B398D762F652.root", + "filesize": 1526845.8056640625, + "trees": { + "Events": { + "entries": 1654969, + "allsize": 1522224.861328125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 44.03515625, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 51.57421875, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 4461.91796875, + "entries": 1654969, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 194.5, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 461.896484375, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 542.171875, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 481.732421875, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 482.451171875, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 450.203125, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 412.544921875, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 401.341796875, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 543.67578125, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 348.412109375, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 616.064453125, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 482.869140625, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 495.775390625, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 471.451171875, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 451.201171875, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 506.9375, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 484.15625, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 605.55859375, + "entries": 106277.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 282.240234375, + "entries": 106277.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 308.52734375, + "entries": 106277.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 249.958984375, + "entries": 106277.99999999999, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 316.9140625, + "entries": 106277.99999999999, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 300.46484375, + "entries": 106277.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 267.591796875, + "entries": 106277.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 310.220703125, + "entries": 106277.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 310.115234375, + "entries": 106277.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 311.666015625, + "entries": 106277.99999999999, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 3105.015625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 2924.53515625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2630.75, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 3116.35546875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 2957.06640625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2592.6015625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 918.7578125, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 8926.86328125, + "entries": 10607654.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 24055.95703125, + "entries": 10607654.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 15488.41796875, + "entries": 10607654.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 24110.22265625, + "entries": 10607654.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 16861.0625, + "entries": 10607654.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 3722.72265625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 5835.7607421875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 3758.19140625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 5821.2685546875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 389.53125, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1703.5234375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 1702.38671875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 624.59375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 624.21484375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1990.529296875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 908.90234375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 900.439453125, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 862.078125, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 861.421875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2098.78125, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1487.693359375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2125.955078125, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1488.1171875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2358.6640625, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2032.51171875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1563.4375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 2209.4609375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1554.89453125, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2019.310546875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1651.958984375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1711.59765625, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 1994.806640625, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2765.576171875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2493.134765625, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 2331.958984375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 2401.947265625, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 2808.830078125, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 2652.712890625, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 2197.6875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 2909.708984375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1734.416015625, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1753.201171875, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1786.765625, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 1971.75, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1722.474609375, + "entries": 654228.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 756.443359375, + "entries": 654228.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 724.189453125, + "entries": 654228.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 949.525390625, + "entries": 654228.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 757.1328125, + "entries": 654228.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 803.24609375, + "entries": 654228.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 790.265625, + "entries": 654228.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1671.41015625, + "entries": 654228.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1504.1796875, + "entries": 654228.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 612.923828125, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 603.65234375, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 701.697265625, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 891.990234375, + "entries": 654228.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 704.302734375, + "entries": 654228.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 620.01171875, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 630.8125, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 645.568359375, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 626.8359375, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 641.33984375, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 657.880859375, + "entries": 654228.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 590.376953125, + "entries": 654228.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 373.4296875, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1044.302734375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1674.0234375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 1881.984375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 1741.8984375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 1830.62109375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1703.79296875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 1715.78515625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 1653.080078125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 1782.416015625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1760.970703125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1635.732421875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 1782.265625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 1699.1640625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 1788.138671875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1606.361328125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 1776.96484375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 1676.26953125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 1821.78125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1655.00390625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 1756.859375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1895.517578125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1852.142578125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1843.291015625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 2088.83984375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 1706.560546875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 1582.27734375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1390.326171875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 995.728515625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 1692.65234375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 1879.80078125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 1826.3828125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 1841.3359375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 1917.701171875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 1883.201171875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 1870.732421875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1654.703125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 1913.583984375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 1857.009765625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 1863.341796875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 1726.091796875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 2068.24609375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 1599.474609375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1283.10546875, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1736.408203125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1737.259765625, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1731.705078125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1723.771484375, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1245.595703125, + "entries": 616760.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 632.734375, + "entries": 616760.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 763.712890625, + "entries": 616760.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 762.560546875, + "entries": 616760.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 706.849609375, + "entries": 616760.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 723.466796875, + "entries": 616760.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1024.29296875, + "entries": 616760.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 92.7578125, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 197.451171875, + "entries": 17367.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 181.853515625, + "entries": 17367.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 181.787109375, + "entries": 17367.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 175.0390625, + "entries": 17367.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 192.8203125, + "entries": 17367.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 131.287109375, + "entries": 17367.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 686.3359375, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7525.2890625, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7349.205078125, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 7906.45703125, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 5729.3544921875, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4700.5654296875, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 7953.5625, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6486.064453125, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5181.2939453125, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3091.7392578125, + "entries": 3091169.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1661.5859375, + "entries": 3091169.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1583.87109375, + "entries": 3091169.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1707.7021484375, + "entries": 3091169.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1366.28125, + "entries": 3091169.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 973.908203125, + "entries": 3091169.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1192.19921875, + "entries": 3091169.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 933.640625, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 7779.427734375, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 14319.8935546875, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 13019.8544921875, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 12143.6220703125, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 12342.8486328125, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 18845.5458984375, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 15792.9580078125, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 17304.2666015625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 16072.59765625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 2976.0078125, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 11714.748046875, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 11419.3896484375, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 22725.1845703125, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4461.7724609375, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4455.8974609375, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 17358.619140625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 3889.091796875, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 14745.8603515625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 13184.5625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 12662.3271484375, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 22488.8447265625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 17076.5390625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 17680.365234375, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 13409.1103515625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 14447.7568359375, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 14732.076171875, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 11584.4306640625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 14610.611328125, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 11646.7744140625, + "entries": 9924828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2433.439453125, + "entries": 9924828.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1682.271484375, + "entries": 9924828.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1835.8876953125, + "entries": 9924828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2187.4677734375, + "entries": 9924828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2280.5029296875, + "entries": 9924828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2698.119140625, + "entries": 9924828.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2094.130859375, + "entries": 9924828.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2381.9921875, + "entries": 9924828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2655.14453125, + "entries": 9924828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 4149.068359375, + "entries": 9924828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 7375.732421875, + "entries": 9924828.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1751.7890625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1266.9765625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1284.0625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1297.515625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 1639.05859375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 738.73828125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 1719.45703125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 1621.19921875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 1655.21875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 2533.7265625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2608.0234375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 390.2109375, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 3041.83984375, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 847.388671875, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2112.2734375, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2120.880859375, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1518.21484375, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2174.3359375, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1502.947265625, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2074.798828125, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 2885.4140625, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1621.126953125, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2270.986328125, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1414.447265625, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2065.3984375, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2443.31640625, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2036.1171875, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2255.220703125, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 2974.19140625, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 2731.046875, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 1962.23828125, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 1793.36328125, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1651.720703125, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 2772.09765625, + "entries": 668394.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 780.33203125, + "entries": 668394.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 696.66796875, + "entries": 668394.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 780.083984375, + "entries": 668394.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 653.21484375, + "entries": 668394.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 722.80859375, + "entries": 668394.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 3248.76953125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 3257.140625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2209.82421875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 2766.58203125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2203.75390625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 3740.08203125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 5731.3740234375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 3120.41015625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2613.53515625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2610.80078125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 153.828125, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 643.26953125, + "entries": 162156.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 682.505859375, + "entries": 162156.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 682.783203125, + "entries": 162156.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 272.087890625, + "entries": 162156.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 272.77734375, + "entries": 162156.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 589.849609375, + "entries": 162156.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 271.08203125, + "entries": 162156.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 548.765625, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4454.265625, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2855.005859375, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 4459.4921875, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4534.384765625, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2973.90625, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 4745.71875, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 4298.189453125, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 3175.896484375, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 3549.75, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1205.529296875, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5767.611328125, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4752.919921875, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 6074.365234375, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 5551.658203125, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 6375.337890625, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 4742.3984375, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 6644.392578125, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 3087.6953125, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 4068.0, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 4248.390625, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 2373.3203125, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 2960.154296875, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1175.369140625, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 3740.951171875, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 3750.912109375, + "entries": 1650938.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1236.599609375, + "entries": 1650938.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1623.681640625, + "entries": 1650938.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1543.4140625, + "entries": 1650938.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1797.263671875, + "entries": 1650938.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1238.27734375, + "entries": 1650938.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1026.6171875, + "entries": 1650938.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1002.939453125, + "entries": 1650938.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1111.568359375, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 943.642578125, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 880.279296875, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1026.275390625, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1025.923828125, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1013.412109375, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 965.953125, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1513.830078125, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1025.6875, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1051.283203125, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1070.224609375, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 1299.57421875, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1013.158203125, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 951.96484375, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 812.439453125, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 1261.515625, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1142.869140625, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1010.662109375, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1078.21484375, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1070.66015625, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1103.26953125, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1014.177734375, + "entries": 1650938.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 423.14453125, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1881.11328125, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 1883.22265625, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 689.8046875, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 688.421875, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1335.15234375, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 1831.8125, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 2627.66015625, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 1822.82421875, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 1686.302734375, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 1925.0546875, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 1978.916015625, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 3478.095703125, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 3084.365234375, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 2608.6640625, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 3460.654296875, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 2056.779296875, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 2095.69921875, + "entries": 803460.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 687.205078125, + "entries": 803460.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 776.822265625, + "entries": 803460.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 784.1328125, + "entries": 803460.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 869.24609375, + "entries": 803460.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1026.173828125, + "entries": 803460.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 687.23046875, + "entries": 803460.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 1525.83984375, + "entries": 803460.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 745.990234375, + "entries": 803460.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 760.31640625, + "entries": 803460.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 740.1875, + "entries": 803460.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 701.564453125, + "entries": 803460.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 717.029296875, + "entries": 803460.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 749.2890625, + "entries": 803460.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 639.033203125, + "entries": 803460.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 239.1171875, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1666.6572265625, + "entries": 572674.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1859.1572265625, + "entries": 572674.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 454.9609375, + "entries": 572674.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 456.142578125, + "entries": 572674.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 548.349609375, + "entries": 572674.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 565.1337890625, + "entries": 572674.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 588.427734375, + "entries": 572674.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 455.8984375, + "entries": 572674.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 3749.8515625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 3118.6953125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 3118.28125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 3120.0859375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 3119.58203125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 3124.98046875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 3118.01171875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 5811.4716796875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3016.64453125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3016.23046875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3016.5390625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3012.99609375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3017.1015625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3008.265625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2930.77734375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 3113.171875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 2958.5078125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2610.6484375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 3119.9453125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3027.00390625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2929.15234375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 5352.87890625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 5480.5966796875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 5467.3427734375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 5514.4912109375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 5426.7802734375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 192.9140625, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 16216.8017578125, + "entries": 9728088.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 15955.6962890625, + "entries": 9728088.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 18378.60546875, + "entries": 9728088.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 5788.3662109375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 4834.61328125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 5793.6005859375, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 5688.8388671875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 704.19140625, + "entries": 1654969, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1090.30859375, + "entries": 1654969, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 826.6953125, + "entries": 1654969, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 239.53125, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1657.25390625, + "entries": 572674.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1604.6484375, + "entries": 572674.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 586.8212890625, + "entries": 572674.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 336.09375, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1799.3359375, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1833.0078125, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 2334.5078125, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 2068.294921875, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1635.560546875, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1625.767578125, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 2288.67578125, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 1967.529296875, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1308.0390625, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1960.908203125, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1881.783203125, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1798.353515625, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1731.240234375, + "entries": 777317.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 330.23828125, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1235.10546875, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1471.884765625, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1594.96875, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1538.927734375, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1288.12109375, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1291.66015625, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1211.451171875, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1111.55078125, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1022.16796875, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1534.423828125, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 956.9375, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1948.5625, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1304.34375, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1204.728515625, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1274.732421875, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1131.50390625, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1256.79296875, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1135.59375, + "entries": 420166.00000000006, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 599.10546875, + "entries": 420166.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 698.880859375, + "entries": 420166.00000000006, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 713.25390625, + "entries": 420166.00000000006, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 505.611328125, + "entries": 420166.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 558.37109375, + "entries": 420166.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 556.603515625, + "entries": 420166.00000000006, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 721.4453125, + "entries": 420166.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 705.578125, + "entries": 420166.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 607.001953125, + "entries": 420166.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 3116.1875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3021.48828125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 2755.0390625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 766.35546875, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 9271.77734375, + "entries": 4452261.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 8447.4111328125, + "entries": 4452261.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 8344.6962890625, + "entries": 4452261.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 5926.302734375, + "entries": 4452261.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1101.80078125, + "entries": 4452261.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 7664.755859375, + "entries": 4452261.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 2001.5390625, + "entries": 4452261.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 1669.5927734375, + "entries": 4452261.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1456.037109375, + "entries": 4452261.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 2766.83984375, + "entries": 4452261.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 58.5390625, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 9155.529296875, + "entries": 4954625.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2251.5390625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1978.16015625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1743.41015625, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 4499.75, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1876.69921875, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2647.08203125, + "entries": 1654969, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1161.02734375, + "entries": 1654969, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1127.0390625, + "entries": 1654969, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 560.640625, + "entries": 1654969, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 3805.494140625, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 3681.890625, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 3794.52734375, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 3687.236328125, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2373.498046875, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1540.021484375, + "entries": 1534539.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 583.9375, + "entries": 654228.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2168.349609375, + "entries": 9924828.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1049.6953125, + "entries": 1650938.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 627.109375, + "entries": 803460.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 481.666015625, + "entries": 420166.00000000006, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3360.013671875, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 4505.29296875, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 3656.087890625, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2746.650390625, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 4483.7734375, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 3752.193359375, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4092.25, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4071.3125, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 4654.44140625, + "entries": 1534539.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1213.015625, + "entries": 1534539.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.7578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.06640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.9453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.15625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.12109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.98828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.7890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.69921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.4765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.90234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.08984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.73828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 219.08203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.9609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.6796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.0, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.0, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.80078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 195.56640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.90234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.9921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.07421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.14453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.26171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.06640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.6953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.03125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.09765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.25, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.71875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.8984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.67578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.97265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.96484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.73828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.99609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.39453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.1484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.59375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.20703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.5234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.66015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.34375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 167.671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.4609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 250.76953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 291.9453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 280.75, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.4453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.4453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.97265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.71484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.8125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 215.03515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 238.890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 264.59765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 285.2265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.4453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.55078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.4453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.4453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.4453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.8203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.10546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.15234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.93359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.30078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 168.1171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 269.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 263.859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 143.86328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.7421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.51171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.51953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.76171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.43359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 168.63671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.73046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.49609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.9453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.8984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.5625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.0859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.4140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.4375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.01171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.4140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.62109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.7421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.72265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.86328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.5546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.75390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.15234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.2265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.43359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.08203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.97265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 217.01953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.08203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.41015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.55078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.4375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.21484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.4765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.0546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 262.03125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 264.73046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 263.74609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 262.84765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.8515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.34765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.19921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.26953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.25, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.97265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.57421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.20703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.4140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.57421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.04296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 253.6484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.56640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.01171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.90625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 256.703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.6171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.94140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.34375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.6328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.69140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 232.515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 276.765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 276.14453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.6953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 267.26953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.8359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.43359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.19140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.01953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.3828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 46.703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.87890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.36328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.19140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.15234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.4765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.3671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 191.67578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.4765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 183.734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.41015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.75390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 164.7421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.16015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.32421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.05859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.9765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 269.14453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.3125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.69921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.9921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 181.19140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.46875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.03515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.60546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.2109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 190.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 83.58984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 112.4296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 170.07421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 122.2890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 126.84765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 103.80859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.8046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.78125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 97.31640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 47.5703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 49.39453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 40.515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.05078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.00390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.06640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.2109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.31640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.97265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 48.64453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.65625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.20703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.5234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 212.6640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.06640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 191.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 84.83203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 113.671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 171.31640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 123.53125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 128.08984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 105.05078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.0234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.3671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 98.55859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 48.8125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 50.63671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 41.7578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.29296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.24609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 46.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 47.1171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.55859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.8984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.44921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 213.8984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.20703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.81640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.8671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.87890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.60546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.78125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.2734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.55078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.42578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.04296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.85546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.57421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.85546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.3359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.23046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.03515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.53515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.95703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.61328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.59375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.93359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.92578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.53515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.9921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.17578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.6328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.0859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.58203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.86328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.56640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.57421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.92578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.5234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.26171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.0703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.90625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.68359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.03125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.3203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.0859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.44921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.8671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.59375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.0390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.77734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.21484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.34765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.33984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.91015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.2421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.47265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.8125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.03515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.02734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.81640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.58203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.46484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.83203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.98046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.1171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.72265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.44921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.38671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.8828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.6484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.18359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.1640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.5234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.51171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.94921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.2265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.68359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.37109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.63671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.6640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.86328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.40234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.0390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.8046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.10546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.37109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.96484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.4375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.94140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.34765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.40234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.40234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.22265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.21875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.5546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.2890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.4296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 134.8671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.80859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.05078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.6171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.80078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.18359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.58984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.3515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.11328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.9765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.21875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.32421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.7578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.78515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.62890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.8359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.75, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.3046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.16015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.9609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.37890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.86328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.45703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.80078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.96875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.16796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.14453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.52734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.9375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.54296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.55859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.21875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.2578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.58984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 187.90234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.8359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.33984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.85546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.37109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.90234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.96484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.96484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.37890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.37890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.34375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.34375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.34375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.74609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.77734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.83203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.66796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.5, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.11328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.17578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.12109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.6171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.55078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.05078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.69921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.83984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.22265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.19921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.80078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.9765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.25390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.50390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.93359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.71484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.95703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.2734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.9921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.9609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.25390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.1796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.9921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.21484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.4296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.42578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.01953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.49609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.16796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.80859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.78125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.5, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.6171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.96484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.15234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.9140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.98046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.75390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.41015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.98828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 242.96875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.50390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 235.37890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 223.3828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 255.7734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 237.078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 230.35546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.71875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.14453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.34765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.09765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.6171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.21875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.59375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.3125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.73828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.75, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.59765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.18359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.9140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.03125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.56640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.39453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.2421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.2890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.29296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.8984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.76953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.0546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.70703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.30078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.5390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.9453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.2109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.50390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.0546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.37109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.8828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.09765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.11328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.12109375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.84765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.46484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.73046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.3671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.59765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.9609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.3359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.55859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.61328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.46875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.93359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.26953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.9765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.62890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.08203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.91015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.76953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.98046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.28125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.85546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.16015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.4375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 159.57421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.84765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.22265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.42578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.61328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.44140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.44921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.71484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.28515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.33203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.3671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.41015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.81640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.15234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.80859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.41015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.32421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.80859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.87890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.03125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.06640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.7890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.72265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.0703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.6953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.8984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.2265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.42578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.1328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.82421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.43359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.66796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 151.0390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.49609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.34765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.15234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.86328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.46875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.6015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.48046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.3203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.34765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.34765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.87890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.26171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.11328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.57421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.55859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.59375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.50390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.78515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 266.7265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 252.24609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 268.31640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 237.0703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.69921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.86328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.1953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.25, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.77734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 262.72265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.20703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.1328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.43359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.09375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.26171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.1484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.36328125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.3046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.59765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.52734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.50390625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.19140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.09375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.2890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.609375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.46875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.03515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.09375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.65234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.90625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.20703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.3203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.08203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.2421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.6171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.48828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.46484375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.01953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.79296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.9921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.63671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 194.921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.27734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.1015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.72265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.72265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.34375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.55078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.0703125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.13671875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.07421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.10546875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.8515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.08203125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.06640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 129.0078125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.4765625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4140625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.14453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.29296875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.4375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.97265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.03515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.82421875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.89453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.73828125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.7890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.515625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.2265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.1875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.291015625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.642578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.98046875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.62890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.56640625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.44921875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.68359375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.26953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.30859375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.26953125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.37890625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.265625, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.0234375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 127.67578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.51171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.51171875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.67578125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.83984375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.39453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.27734375, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 23.39453125, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.91796875, + "entries": 1654969, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 44.03515625, + "entries": 1654969, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 51.57421875, + "entries": 1654969, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 4461.91796875, + "entries": 1654969, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 11090.642578125, + "entries": 106277.99999999999, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8660.30078125, + "entries": 1654969, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 8666.0234375, + "entries": 1654969, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 90361.28125, + "entries": 10607654.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 9558.4833984375, + "entries": 1654969, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 9579.4599609375, + "entries": 1654969, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 80862.697265625, + "entries": 654228.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 87381.25, + "entries": 616760.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1152.99609375, + "entries": 17367.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 65095.4150390625, + "entries": 3091169.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 419766.7314453125, + "entries": 9924828.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 18115.765625, + "entries": 1654969, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 50292.68359375, + "entries": 668394.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 31502.2724609375, + "entries": 1654969, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 7656.4384765625, + "entries": 162156.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 136019.455078125, + "entries": 1650938.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 47594.857421875, + "entries": 803460.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 6833.8447265625, + "entries": 572674.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 49299.5146484375, + "entries": 1654969, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8682.328125, + "entries": 1654969, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 9076.1015625, + "entries": 1654969, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 5352.87890625, + "entries": 1654969, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 5480.5966796875, + "entries": 1654969, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 5467.3427734375, + "entries": 1654969, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 5514.4912109375, + "entries": 1654969, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 5426.7802734375, + "entries": 1654969, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 50744.017578125, + "entries": 9728088.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 5788.3662109375, + "entries": 1654969, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 4834.61328125, + "entries": 1654969, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 5793.6005859375, + "entries": 1654969, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 5688.8388671875, + "entries": 1654969, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 704.19140625, + "entries": 1654969, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1090.30859375, + "entries": 1654969, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 826.6953125, + "entries": 1654969, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 24569.09765625, + "entries": 777317.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 29991.212890625, + "entries": 420166.00000000006, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 8892.71484375, + "entries": 1654969, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 49417.1083984375, + "entries": 4452261.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 9214.068359375, + "entries": 4954625.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 17284.70703125, + "entries": 1654969, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 55978.33984375, + "entries": 1534539.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 28169.18359375, + "entries": 1654969, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 4098.796875, + "entries": 1654969, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 39.06640625, + "entries": 1654969, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 40.515625, + "entries": 1654969, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 29970.7421875, + "entries": 1654969, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 40.515625, + "entries": 1654969, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 10, + "allsize": 0.107421875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.107421875, + "entries": 10, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.107421875, + "entries": 10, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1808, + "allsize": 2.1494140625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2138671875, + "entries": 1808, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.2724609375, + "entries": 1808, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2197265625, + "entries": 1808, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.21875, + "entries": 1808, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.224609375, + "entries": 1808, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2138671875, + "entries": 1808, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.2724609375, + "entries": 1808, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2197265625, + "entries": 1808, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.21875, + "entries": 1808, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.224609375, + "entries": 1808, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30560/MuOnia_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30560/MuOnia_doc.html new file mode 100644 index 000000000..aeea7796e --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30560/MuOnia_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for 0AB09F5D-121F-9443-87C8-3B69FAF1D99E.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30560/MuOnia_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30560/MuOnia_doc.json new file mode 100644 index 000000000..eb29b3f8a --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30560/MuOnia_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "0AB09F5D-121F-9443-87C8-3B69FAF1D99E.root", + "filesize": 1667192.6005859375, + "trees": { + "Events": { + "entries": 2359881, + "allsize": 1661828.9609375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 53.806640625, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 64.955078125, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 6379.197265625, + "entries": 2359881, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 127.990234375, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 237.0830078125, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 252.2578125, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 243.0283203125, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 243.1884765625, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 236.142578125, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 219.0263671875, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 213.8251953125, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 253.0625, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 205.7763671875, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 263.2626953125, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 239.1962890625, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 247.5634765625, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 237.8134765625, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 234.6806640625, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 252.466796875, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 241.853515625, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 267.189453125, + "entries": 27314.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 177.7548828125, + "entries": 27314.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 187.138671875, + "entries": 27314.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 166.3095703125, + "entries": 27314.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 190.052734375, + "entries": 27314.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 183.947265625, + "entries": 27314.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 170.7646484375, + "entries": 27314.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 186.6435546875, + "entries": 27314.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 185.5107421875, + "entries": 27314.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 186.9677734375, + "entries": 27314.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4427.509765625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 4133.19140625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3740.326171875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4440.91015625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 4129.544921875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3642.75, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1215.208984375, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 10140.1162109375, + "entries": 12065933.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 27655.0751953125, + "entries": 12065933.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 18150.4599609375, + "entries": 12065933.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 27676.4462890625, + "entries": 12065933.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 19248.4677734375, + "entries": 12065933.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 5259.896484375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 8098.5859375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 5277.802734375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 8135.7265625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 377.775390625, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1144.302734375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 1144.52734375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 526.826171875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 525.92578125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 1336.4912109375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 579.908203125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 581.7314453125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 571.013671875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 573.158203125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1396.283203125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1035.4873046875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1414.7958984375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1040.94140625, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 1494.11328125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 1358.0234375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1074.3515625, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 1441.908203125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 1014.232421875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1345.8837890625, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1112.0888671875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1153.7421875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 1321.0322265625, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1731.8798828125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1548.8798828125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 1534.3857421875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 1582.7392578125, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1743.2724609375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1640.6357421875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 1440.951171875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 1778.8193359375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1171.0693359375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 1172.1669921875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1208.34375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 1328.04296875, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1145.4677734375, + "entries": 361915.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 613.4638671875, + "entries": 361915.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 584.7197265625, + "entries": 361915.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 711.8271484375, + "entries": 361915.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 613.765625, + "entries": 361915.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 615.390625, + "entries": 361915.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 621.044921875, + "entries": 361915.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 1164.69921875, + "entries": 361915.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 1047.37109375, + "entries": 361915.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 521.7041015625, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 507.23828125, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 576.6455078125, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 678.5341796875, + "entries": 361915.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 577.5869140625, + "entries": 361915.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 522.052734375, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 531.833984375, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 539.1279296875, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 530.2109375, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 541.9765625, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 548.4541015625, + "entries": 361915.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 505.4111328125, + "entries": 361915.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 171.115234375, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 295.5888671875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 386.181640625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 399.75390625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 389.83984375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 395.37890625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 391.478515625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 399.61328125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 366.6572265625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 372.8447265625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 369.3818359375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 364.6552734375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 373.171875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 369.4921875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 371.8447265625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 363.5693359375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 372.07421875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 366.8203125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 391.146484375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 382.63671875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 399.830078125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 401.3251953125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 398.5166015625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 397.2900390625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 419.4609375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 374.5615234375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 355.693359375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 332.6201171875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 265.7568359375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 386.376953125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 399.517578125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 398.412109375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 399.912109375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 406.0302734375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 403.4677734375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 402.4365234375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 384.92578125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 404.7783203125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 400.8134765625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 399.6103515625, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 383.8154296875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 421.0546875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 359.6845703125, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 313.443359375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 378.0732421875, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 377.8818359375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 375.6396484375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 374.4365234375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 346.8662109375, + "entries": 74633.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 202.033203125, + "entries": 74633.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 237.4072265625, + "entries": 74633.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 238.3837890625, + "entries": 74633.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 226.0400390625, + "entries": 74633.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 238.3994140625, + "entries": 74633.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 266.392578125, + "entries": 74633.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 110.49609375, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 227.5693359375, + "entries": 18541.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 210.8720703125, + "entries": 18541.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 211.0400390625, + "entries": 18541.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 202.357421875, + "entries": 18541.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 223.0390625, + "entries": 18541.000000000004, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 154.3095703125, + "entries": 18541.000000000004, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 727.396484375, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 5562.0439453125, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5478.3515625, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 5891.8798828125, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 4394.169921875, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3665.283203125, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 5934.0595703125, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 4884.09375, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3929.451171875, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2581.1240234375, + "entries": 2098247.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1552.8291015625, + "entries": 2098247.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1526.0791015625, + "entries": 2098247.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1608.3896484375, + "entries": 2098247.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1341.7421875, + "entries": 2098247.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1067.2314453125, + "entries": 2098247.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1235.123046875, + "entries": 2098247.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1144.97265625, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 7252.583984375, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 13375.5732421875, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 12779.7060546875, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 12121.0439453125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 12195.9580078125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 17241.9052734375, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 14763.3720703125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 15986.6064453125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 14663.74609375, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 2908.2109375, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 10815.927734375, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 10727.9248046875, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 20673.9892578125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 3634.2802734375, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 3636.7060546875, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 15463.337890625, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 5942.564453125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 13633.7626953125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 12179.953125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 11275.8466796875, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 20379.0087890625, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 15118.48046875, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 16163.677734375, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 11479.5205078125, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 13278.2880859375, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 13807.998046875, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 10587.1025390625, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 13525.435546875, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 10589.7822265625, + "entries": 8692001.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2539.208984375, + "entries": 8692001.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2035.072265625, + "entries": 8692001.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2080.8017578125, + "entries": 8692001.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2341.3974609375, + "entries": 8692001.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2649.0576171875, + "entries": 8692001.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 3591.873046875, + "entries": 8692001.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2845.791015625, + "entries": 8692001.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2535.40625, + "entries": 8692001.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 3487.171875, + "entries": 8692001.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 4015.666015625, + "entries": 8692001.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 6537.845703125, + "entries": 8692001.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1881.3984375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 747.166015625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 753.34375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 757.568359375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 4446.73828125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 1494.533203125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 4967.314453125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 4360.380859375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 4517.263671875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 4707.470703125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 5176.0703125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 492.36328125, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 3355.033203125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 849.5498046875, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2354.814453125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2372.2392578125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1698.154296875, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2431.091796875, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1697.3427734375, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2301.4560546875, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 3178.751953125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 1814.2177734375, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 2541.2001953125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1470.6689453125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2276.37890625, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 2630.78125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2117.94140625, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 2521.7939453125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 3246.646484375, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 3045.12890625, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2154.951171875, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2016.470703125, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 1781.8427734375, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 3054.765625, + "entries": 724714.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 914.275390625, + "entries": 724714.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 795.564453125, + "entries": 724714.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 914.4404296875, + "entries": 724714.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 781.65234375, + "entries": 724714.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 851.4375, + "entries": 724714.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4599.109375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4596.8046875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2981.845703125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3701.685546875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2981.056640625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 5323.826171875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 8166.9140625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 4376.00390625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3661.380859375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3647.828125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 162.658203125, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 628.810546875, + "entries": 151513.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 665.3955078125, + "entries": 151513.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 665.9345703125, + "entries": 151513.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 282.0341796875, + "entries": 151513.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 283.7265625, + "entries": 151513.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 579.7275390625, + "entries": 151513.99999999997, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 281.73828125, + "entries": 151513.99999999997, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 567.333984375, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 11995.8203125, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 7022.568359375, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 11943.265625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 12268.416015625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 7345.7265625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 13085.26953125, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 11547.955078125, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 8244.353515625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 9361.5546875, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 2281.525390625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 14788.654296875, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 11290.166015625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 16422.783203125, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 14343.908203125, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 17697.755859375, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 12979.3203125, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 18845.134765625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 7588.140625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 10559.765625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 11460.26953125, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 5996.08203125, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 7316.056640625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 2432.853515625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 11697.369140625, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 11363.091796875, + "entries": 5009451.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 2624.978515625, + "entries": 5009451.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 3485.220703125, + "entries": 5009451.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 3417.39453125, + "entries": 5009451.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 4034.615234375, + "entries": 5009451.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 2630.51953125, + "entries": 5009451.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1965.31640625, + "entries": 5009451.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1913.783203125, + "entries": 5009451.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 2142.5166015625, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1660.3349609375, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 1509.4560546875, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1750.0556640625, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1753.3525390625, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1715.0869140625, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1696.03515625, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 3313.9443359375, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1754.189453125, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1895.4853515625, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 2134.5341796875, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 2963.62890625, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 2051.8349609375, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 2265.51171875, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 1417.8427734375, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 3022.783203125, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 2532.9833984375, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1798.4677734375, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 2118.71484375, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 2087.087890625, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 2324.099609375, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1780.0107421875, + "entries": 5009451.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 363.791015625, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 1019.13671875, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 1020.599609375, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 487.5859375, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 486.470703125, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 812.927734375, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 1000.560546875, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 1333.0234375, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 980.52734375, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 934.2958984375, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 1073.154296875, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 1098.4248046875, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 1654.6494140625, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 1525.5634765625, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 1328.09375, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 1594.2548828125, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 1085.7041015625, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 1111.779296875, + "entries": 330719.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 485.0009765625, + "entries": 330719.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 521.7724609375, + "entries": 330719.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 532.80078125, + "entries": 330719.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 567.67578125, + "entries": 330719.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 634.3876953125, + "entries": 330719.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 484.888671875, + "entries": 330719.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 877.763671875, + "entries": 330719.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 520.4755859375, + "entries": 330719.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 531.623046875, + "entries": 330719.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 524.521484375, + "entries": 330719.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 497.1064453125, + "entries": 330719.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 506.3759765625, + "entries": 330719.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 524.736328125, + "entries": 330719.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 467.5615234375, + "entries": 330719.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 236.015625, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1465.1982421875, + "entries": 486855.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 1626.5966796875, + "entries": 486855.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 436.296875, + "entries": 486855.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 437.7275390625, + "entries": 486855.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 519.15234375, + "entries": 486855.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 530.5615234375, + "entries": 486855.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 549.5009765625, + "entries": 486855.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 437.388671875, + "entries": 486855.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 5313.75390625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4416.986328125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4416.490234375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4417.279296875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4417.017578125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4416.431640625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4421.630859375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 8174.416015625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 4174.84375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 4174.34765625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 4172.84375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 4174.7890625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 4171.9140625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 4173.3046875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4044.36328125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4428.79296875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 4133.740234375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3658.359375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4413.845703125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 4164.72265625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4016.974609375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 7400.5390625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 7510.0390625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 7767.453125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 7983.662109375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 7687.138671875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 264.875, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 23145.8642578125, + "entries": 13916354.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 22750.3486328125, + "entries": 13916354.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 25568.38671875, + "entries": 13916354.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 8038.318359375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 6753.150390625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 8149.6328125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 8161.08203125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 851.34765625, + "entries": 2359881, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1506.736328125, + "entries": 2359881, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1051.369140625, + "entries": 2359881, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 236.51171875, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1458.17578125, + "entries": 486855.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1414.2734375, + "entries": 486855.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 550.1669921875, + "entries": 486855.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 141.626953125, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 402.439453125, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 406.943359375, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 443.13671875, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 422.7841796875, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 369.1162109375, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 371.3505859375, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 443.43359375, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 405.4658203125, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 317.107421875, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 413.7568359375, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 406.1630859375, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 397.6162109375, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 389.6318359375, + "entries": 97484.99999999999, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 389.3359375, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1284.60546875, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 1501.2333984375, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 1599.77734375, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 1564.3310546875, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1322.95703125, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1325.328125, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1235.7431640625, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1118.025390625, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 993.72265625, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 1558.4404296875, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 979.404296875, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 1875.8671875, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1338.3828125, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1274.9541015625, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1312.0302734375, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1363.91015625, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1300.41796875, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1186.484375, + "entries": 398759.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 661.65625, + "entries": 398759.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 754.5205078125, + "entries": 398759.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 720.0625, + "entries": 398759.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 566.3095703125, + "entries": 398759.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 622.767578125, + "entries": 398759.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 618.8564453125, + "entries": 398759.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 770.005859375, + "entries": 398759.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 751.94921875, + "entries": 398759.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 684.4931640625, + "entries": 398759.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 4404.181640625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 4169.9296875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3787.099609375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 425.8203125, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 2587.37109375, + "entries": 981018.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 2402.0341796875, + "entries": 981018.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 2384.5732421875, + "entries": 981018.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 1591.478515625, + "entries": 981018.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 496.16796875, + "entries": 981018.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 1951.958984375, + "entries": 981018.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 722.30859375, + "entries": 981018.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 665.0087890625, + "entries": 981018.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 714.931640625, + "entries": 981018.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 953.59375, + "entries": 981018.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 55.62109375, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 12976.861328125, + "entries": 7079158.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 3201.447265625, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2831.2734375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2499.375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 6397.3125, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2667.693359375, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3495.6875, + "entries": 2359881, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1490.486328125, + "entries": 2359881, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1460.818359375, + "entries": 2359881, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 660.103515625, + "entries": 2359881, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 3949.1279296875, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 3850.07421875, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 3933.61328125, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 3853.8916015625, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2584.5400390625, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1703.4931640625, + "entries": 1524190.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 505.51171875, + "entries": 361915.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2757.205078125, + "entries": 8692001.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1885.28515625, + "entries": 5009451.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 467.419921875, + "entries": 330719.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 545.1689453125, + "entries": 398759.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3536.0185546875, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 4697.13671875, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 3819.7646484375, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2870.3232421875, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 4671.78125, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 3890.9384765625, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4249.220703125, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4229.189453125, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 4814.251953125, + "entries": 1524190.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1380.7421875, + "entries": 1524190.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.330078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.322265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.05859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.08203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.08203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.826171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.08203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.833984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.5859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.064453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.162109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.677734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.189453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.146484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.841796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.783203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.357421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.419921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.896484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.958984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.478515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.720703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.873046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.943359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.041015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.388671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.19921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.46484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.01171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.958984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.017578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.146484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.013671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.849609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.79296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 179.359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 155.19140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.91796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.8828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.91796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 394.671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.759765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 326.375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.685546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.6015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.462890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 328.2421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.49609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.587890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 384.875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 386.7265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 317.1171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 351.6796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 343.96875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.1484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.48046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.638671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.806640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.08984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.3671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.08984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.09765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.08203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.62890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.51171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.98046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.99609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.08984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.810546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.08984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.826171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.08984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.08984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.826171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.369140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.443359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.408203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.470703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.900390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.275390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.775390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.681640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.533203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.294921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.865234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.083984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.5546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.76953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.314453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.05078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.314453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.05078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.48046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 163.552734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 168.916015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.08203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 198.373046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 263.814453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.033203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.2890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 276.232421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 232.392578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.19140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 123.23828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.6484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.71484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.4140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.841796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.78515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.35546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.330078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.353515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.330078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.365234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.134765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.642578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.169921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.4609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.4765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.595703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.142578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.193359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.822265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.08203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.134765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.873046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.669921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.619140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.9296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.572265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.966796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.513671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.458984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.341796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.158203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.173828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.791015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.865234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.740234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.982421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.607421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.974609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.18359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.09765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.3984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.01171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.50390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.2734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.70703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.31640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.8984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.35546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.09765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.9609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.83203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.76953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.34765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.97265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.689453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.744140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.197265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.60546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.212890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.345703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.556640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.60546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.396484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.51953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.314453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.35546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.306640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.31640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.330078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.330078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.837890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.423828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 284.357421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 271.685546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 301.775390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 291.595703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 315.501953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 306.208984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 298.712890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 290.224609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 282.544921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.21875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 254.794921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 246.787109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.4140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.1875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.5703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.474609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.306640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.619140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.509765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.80078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.302734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.435546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 103.626953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.548828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 359.6953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 355.986328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 294.677734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.775390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.798828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.314453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.48046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.482421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 103.896484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 162.19140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 95.544921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.58984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.865234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.0625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.478515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.818359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.560546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.810546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 49.412109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 49.5703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.52734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 49.66015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.791015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 51.068359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.9921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.2578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 50.8046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.53125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.05078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.05078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 52.794921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.876953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 102.380859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 47.833984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 51.984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.970703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 105.384765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 163.6796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 97.033203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.353515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.55078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.966796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.306640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 68.048828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.322265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 50.900390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 51.05859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 51.1484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.279296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 52.556640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.48046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 51.74609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.01953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.5390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.5390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.283203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.365234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 103.869140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.5703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.43359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.8984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.908203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.978515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.931640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.494140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.01953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.388671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.646484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.931640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.60546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.4765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.88671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.95703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.841796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 346.48828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 144.677734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.294921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.810546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.7265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.423828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.91015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.611328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.8828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.587890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.87109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.580078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.44140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.76953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.3046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.720703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.615234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.900390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.9765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.66015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.568359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 164.455078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 160.1875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.185546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.81640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.701171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.861328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.189453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.908203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.29296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.87109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.490234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.25390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.76171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.2109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.05859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.1640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.736328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.62890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.037109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.919921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.61328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.876953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.57421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.861328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.55859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.513671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.935546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.658203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.388671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.392578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.416015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.533203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.611328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.1953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.66015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.28515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.46875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.884765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.8984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.611328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.3203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.21484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.513671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.275390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.37109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.736328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.33984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.685546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.2890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.185546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.388671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.82421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.197265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.103515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.814453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.650390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.939453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.1640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.767578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.236328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.322265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.3671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.33984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.494140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.0625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.90234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.17578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.31640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.908203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.244140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.873046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.865234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.32421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.912109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.111328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.37890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.556640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.55078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.904296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.837890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.697265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.96875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.951171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 244.68359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.39453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 129.564453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.23828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.501953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.01171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.33984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.1171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 141.970703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.4453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.884765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.212890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.84375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.23046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.541015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.2109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.71484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.134765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.978515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.05078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.681640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.638671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.44921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.4921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.341796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.599609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.83984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.43359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.49609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.306640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.306640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.802734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.802734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.5859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.59375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.59375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.908203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.939453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.373046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.849609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.267578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.490234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.865234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.849609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.876953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.1875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.1640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.9375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.20703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.3828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.8828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.1640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.09375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.408203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.466796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.697265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.462890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.775390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.462890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.64453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.57421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.857421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.837890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.287109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.884765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.962890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.05078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.478515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.60546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.09765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.333984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.865234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.908203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.884765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.021484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.103515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.169921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.865234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.208984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.994140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.15625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.904296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.755859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.822265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.927734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.974609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.05859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.16796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.0078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.857421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.80859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.09765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.041015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.76171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.611328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.083984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.72265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.447265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.033203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.822265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.869140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.451171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.376953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.1015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.02734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.427734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.966796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.5234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.94921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.9921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.23046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.427734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.474609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.966796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.353515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.71484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.267578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.275390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.28125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.46875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.271484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.279296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.287109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.306640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.287109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.318359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.326171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.291015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.55859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.5390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.810546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.9765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.791015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.03125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.02734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.03125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.66015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.38671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.9765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.826171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.955078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.400390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.43359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.353515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.99609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.326171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.294921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.455078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.427734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.1171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.271484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.994140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.435546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.48046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.783203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.388671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.619140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.69921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.314453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.830078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.70703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.806640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.669921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.576171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.642578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.36328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.6875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.53515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.5546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.04296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.03125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.28125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.0859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.1015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.08984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.09765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.1171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.13671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.384765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.361328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.43359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.302734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.318359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.322265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.318359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.341796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.353515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.6328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.65234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.732421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.787109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.236328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.740234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 319.13671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.99609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.998046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.107421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.978515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.12109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.599609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.865234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.216796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.384765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.013671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.494140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.525390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.345703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.798828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.05078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.03515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.1171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.08203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.396484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.1328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.330078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.876953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.1171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.53515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.783203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.783203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.404296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.03125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.90234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.322265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.341796875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.517578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.935546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.455078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.501953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.59765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.615234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.634765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.087890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.689453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.904296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.85546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.017578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.2890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.2890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.16015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.326171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.923828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 389.52734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 288.6953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.9140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.29296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.263671875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.28515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.009765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.294921875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.55859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.55859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.126953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.232421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.369140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.24609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.74609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.939453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.91015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.5546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.31640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.298828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.787109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.0546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.9296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.5703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.935546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.943359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.958984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.189453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.060546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.017578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.08203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.322265625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.826171875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.06640625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.818359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.818359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.314453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.5625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.810546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.833984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.314453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.03125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.267578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.05078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.5390625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.353515625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.677734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.611328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.1015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.80859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.58984375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.5859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.19140625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.1328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.09765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.0859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.365234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.337890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.8046875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.609375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.6015625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.5703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.12890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.73828125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.814453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.658203125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.771484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.2392578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.6689453125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.490234375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.84765625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.7412109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.6484375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.7412109375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 38.578125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.927734375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.5986328125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.4462890625, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.7001953125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.060546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.060546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.505859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 37.93359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.8818359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.703125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.8818359375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 38.205078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 24.07421875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.9580078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 23.9580078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.5546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.55078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.5546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.54296875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.55078125, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.55859375, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 24.546875, + "entries": 2359881, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 53.806640625, + "entries": 2359881, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 64.955078125, + "entries": 2359881, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 6379.197265625, + "entries": 2359881, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 5850.4970703125, + "entries": 27314.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12301.02734375, + "entries": 2359881, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 12213.205078125, + "entries": 2359881, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 104085.7744140625, + "entries": 12065933.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 13358.482421875, + "entries": 2359881, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 13413.529296875, + "entries": 2359881, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 55649.7685546875, + "entries": 361915.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 19764.1328125, + "entries": 74633.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1339.68359375, + "entries": 18541.000000000004, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 51379.248046875, + "entries": 2098247.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 394763.7626953125, + "entries": 8692001.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 33809.248046875, + "entries": 2359881, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 55660.955078125, + "entries": 724714.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 44036.455078125, + "entries": 2359881, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 7209.1533203125, + "entries": 151513.99999999997, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 338090.2109375, + "entries": 5009451.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 27054.6533203125, + "entries": 330719.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 6238.4384765625, + "entries": 486855.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 69080.412109375, + "entries": 2359881, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12220.892578125, + "entries": 2359881, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12595.54296875, + "entries": 2359881, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 7400.5390625, + "entries": 2359881, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7510.0390625, + "entries": 2359881, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 7767.453125, + "entries": 2359881, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7983.662109375, + "entries": 2359881, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 7687.138671875, + "entries": 2359881, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 71729.474609375, + "entries": 13916354.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 8038.318359375, + "entries": 2359881, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 6753.150390625, + "entries": 2359881, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 8149.6328125, + "entries": 2359881, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 8161.08203125, + "entries": 2359881, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 851.34765625, + "entries": 2359881, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1506.736328125, + "entries": 2359881, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1051.369140625, + "entries": 2359881, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 5330.572265625, + "entries": 97484.99999999999, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 31220.7412109375, + "entries": 398759.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 12361.2109375, + "entries": 2359881, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 14895.2470703125, + "entries": 981018.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 13032.482421875, + "entries": 7079158.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 24044.09375, + "entries": 2359881, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 58694.2109375, + "entries": 1524190.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 26369.3427734375, + "entries": 2359881, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 3400.59375, + "entries": 2359881, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 47.833984375, + "entries": 2359881, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 49.5703125, + "entries": 2359881, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 31130.515625, + "entries": 2359881, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 49.5703125, + "entries": 2359881, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 14, + "allsize": 0.123046875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.123046875, + "entries": 14, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.123046875, + "entries": 14, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 2934, + "allsize": 2.9931640625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2373046875, + "entries": 2934, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 2.0771484375, + "entries": 2934, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2236328125, + "entries": 2934, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.21875, + "entries": 2934, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.236328125, + "entries": 2934, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2373046875, + "entries": 2934, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 2.0771484375, + "entries": 2934, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2236328125, + "entries": 2934, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.21875, + "entries": 2934, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.236328125, + "entries": 2934, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30561/MuonEG_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30561/MuonEG_doc.html new file mode 100644 index 000000000..60be79b10 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30561/MuonEG_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for 0E3D51CB-3B75-974F-B868-0E2ABA272073.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30561/MuonEG_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30561/MuonEG_doc.json new file mode 100644 index 000000000..eb1dd7839 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30561/MuonEG_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "0E3D51CB-3B75-974F-B868-0E2ABA272073.root", + "filesize": 1615696.83203125, + "trees": { + "Events": { + "entries": 1480020, + "allsize": 1610011.2890625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 44.92578125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 54.03515625, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 4022.46484375, + "entries": 1480020, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 214.05078125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 603.9189453125, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 703.71875, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 615.6494140625, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 616.8095703125, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 594.861328125, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 557.9365234375, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 528.8447265625, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 705.91015625, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 466.3857421875, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 790.0361328125, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 617.2392578125, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 626.9345703125, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 616.2822265625, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 598.2939453125, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 657.560546875, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 621.947265625, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 794.568359375, + "entries": 151052.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 344.2548828125, + "entries": 151052.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 383.013671875, + "entries": 151052.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 301.7900390625, + "entries": 151052.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 403.095703125, + "entries": 151052.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 372.626953125, + "entries": 151052.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 329.7685546875, + "entries": 151052.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 380.7255859375, + "entries": 151052.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 378.0576171875, + "entries": 151052.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 377.2216796875, + "entries": 151052.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 2805.8671875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 2623.52734375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2332.890625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 2815.69921875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 2629.98828125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 2282.73046875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 795.4375, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 6921.64453125, + "entries": 7981157.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 18364.14453125, + "entries": 7981157.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 11891.2734375, + "entries": 7981157.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 18474.69140625, + "entries": 7981157.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 12844.12890625, + "entries": 7981157.000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 3355.32421875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 5150.26171875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 3403.046875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 5155.890625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 468.1015625, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3268.19921875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 3262.84375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 946.4921875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 946.66796875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3821.138671875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1854.390625, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1813.716796875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1688.89453125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 1689.8125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4015.5, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2723.970703125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 4067.505859375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2766.55078125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 4521.36328125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3892.6640625, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2874.76171875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 4258.5703125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 2870.90625, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3850.701171875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 3129.322265625, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 3222.80859375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 3836.615234375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5658.736328125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 5058.033203125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 4938.423828125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 5120.255859375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 5785.189453125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 5424.283203125, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 4262.109375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 5925.931640625, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3250.802734375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 3312.349609375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3389.71875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 3749.71484375, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 3349.185546875, + "entries": 1430230.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1202.427734375, + "entries": 1430230.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1241.994140625, + "entries": 1430230.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1536.177734375, + "entries": 1430230.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1205.7578125, + "entries": 1430230.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1358.03125, + "entries": 1430230.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1281.47265625, + "entries": 1430230.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 3179.07421875, + "entries": 1430230.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 2790.203125, + "entries": 1430230.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 898.2236328125, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 862.80078125, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1047.2705078125, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1435.9521484375, + "entries": 1430230.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1098.7587890625, + "entries": 1430230.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 903.884765625, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 931.916015625, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 996.3857421875, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 938.953125, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 963.80078125, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1022.1259765625, + "entries": 1430230.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 817.5908203125, + "entries": 1430230.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 299.9453125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 759.9208984375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1189.533203125, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 1280.18359375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 1198.4609375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 1245.29296875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1226.029296875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 1238.33984375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 1086.0751953125, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 1141.3212890625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1123.0654296875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1070.0849609375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 1140.5390625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 1098.06640625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 1129.7275390625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1065.9677734375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 1136.91015625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 1086.0625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 1233.958984375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1169.96484375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 1251.595703125, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1282.1650390625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1260.2626953125, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1252.9384765625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 1410.3515625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 1160.7021484375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 1074.060546875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 961.2099609375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 645.1279296875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 1169.478515625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 1272.517578125, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 1251.791015625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 1265.009765625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 1298.0615234375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 1277.9794921875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 1270.1318359375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1171.5703125, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 1294.0439453125, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 1261.7705078125, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 1255.7744140625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 1179.2998046875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 1406.40625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 1074.4931640625, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 855.583984375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1176.2333984375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1175.2724609375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1172.7568359375, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1171.6591796875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1079.5810546875, + "entries": 391683.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 447.205078125, + "entries": 391683.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 559.4072265625, + "entries": 391683.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 559.3056640625, + "entries": 391683.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 545.2626953125, + "entries": 391683.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 547.0986328125, + "entries": 391683.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 714.693359375, + "entries": 391683.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 176.546875, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 579.1318359375, + "entries": 89960.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 488.7236328125, + "entries": 89960.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 488.4228515625, + "entries": 89960.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 444.103515625, + "entries": 89960.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 560.72265625, + "entries": 89960.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 247.5048828125, + "entries": 89960.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 572.85546875, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 5466.0546875, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5382.4384765625, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 5769.3828125, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 4304.0712890625, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3518.5517578125, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 5801.40625, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 4736.3173828125, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3930.6181640625, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 2460.5107421875, + "entries": 2140443.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1337.013671875, + "entries": 2140443.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1354.5810546875, + "entries": 2140443.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1400.0966796875, + "entries": 2140443.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1139.953125, + "entries": 2140443.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 842.521484375, + "entries": 2140443.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1036.7890625, + "entries": 2140443.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 777.2890625, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 6728.296875, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 13628.8681640625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 12937.943359375, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 12294.736328125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 12343.619140625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 16924.1064453125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 14486.6611328125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 15769.5791015625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 14567.8154296875, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 3459.1328125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 10886.078125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 10577.587890625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 20208.1259765625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 3204.197265625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 3206.205078125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 15463.8076171875, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 4465.953125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 13157.5830078125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 11756.4365234375, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 11042.373046875, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 19883.7548828125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 15364.33203125, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 15063.0302734375, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 12482.2900390625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 12667.837890625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 12924.3818359375, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 10387.396484375, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 12846.2060546875, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 10379.666015625, + "entries": 8742600.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 2641.171875, + "entries": 8742600.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 1639.16796875, + "entries": 8742600.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 1535.341796875, + "entries": 8742600.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 1915.294921875, + "entries": 8742600.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2152.376953125, + "entries": 8742600.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2692.9375, + "entries": 8742600.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 1829.31640625, + "entries": 8742600.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 2526.45703125, + "entries": 8742600.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2609.83984375, + "entries": 8742600.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 3585.70703125, + "entries": 8742600.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 6470.916015625, + "entries": 8742600.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 2792.6953125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1239.31640625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1255.9765625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1266.15234375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 3114.44921875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 2151.984375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 3179.99609375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 3078.1796875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 3151.29296875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 3530.46875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 3617.51953125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 437.33203125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 4385.603515625, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1107.7724609375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 2949.298828125, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2960.4580078125, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2107.623046875, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3041.802734375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2063.3740234375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 2917.0771484375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 4215.271484375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2220.4248046875, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 3193.3330078125, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 1968.4189453125, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 2912.45703125, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3766.6171875, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3207.3984375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 3174.7509765625, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 4359.806640625, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 3884.87890625, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 2788.748046875, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2504.599609375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2346.8662109375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 4077.72265625, + "entries": 1010004.0000000001, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 975.693359375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 900.818359375, + "entries": 1010004.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 974.6279296875, + "entries": 1010004.0000000001, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 793.765625, + "entries": 1010004.0000000001, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 925.97265625, + "entries": 1010004.0000000001, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 2919.3125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 2919.94921875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 1918.421875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 2440.65234375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 1917.66015625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 3387.5703125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 5136.9609375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 2795.8515625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 2314.9140625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 2303.05078125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 189.04296875, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 784.462890625, + "entries": 197567.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 833.5361328125, + "entries": 197567.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 833.8603515625, + "entries": 197567.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 327.4990234375, + "entries": 197567.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 327.84375, + "entries": 197567.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 718.9580078125, + "entries": 197567.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 326.15234375, + "entries": 197567.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 399.61328125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 5465.45703125, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 3403.908203125, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 5443.57421875, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5529.462890625, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 3517.99609375, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 5808.83984375, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 5249.470703125, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 4007.591796875, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 4284.6015625, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1378.626953125, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 7773.552734375, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 6741.115234375, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 7950.560546875, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 7432.837890625, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 8134.541015625, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 5776.9140625, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 8148.673828125, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 3727.39453125, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 4923.48046875, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 5163.69140625, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 2914.47265625, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 3620.748046875, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1366.833984375, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 4599.564453125, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 4583.158203125, + "entries": 2065059.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1425.400390625, + "entries": 2065059.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1924.126953125, + "entries": 2065059.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1822.29296875, + "entries": 2065059.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 2121.626953125, + "entries": 2065059.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1431.1015625, + "entries": 2065059.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1153.0546875, + "entries": 2065059.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1227.470703125, + "entries": 2065059.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1217.6142578125, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1039.2568359375, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 930.0146484375, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1092.3369140625, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1104.3525390625, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1081.1767578125, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1074.25, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1809.4169921875, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1106.158203125, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1141.3720703125, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1179.5068359375, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 1459.08203125, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1064.3583984375, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 1117.62890625, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 845.4091796875, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 1401.185546875, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1255.6748046875, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1115.2294921875, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1176.93359375, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1166.623046875, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1226.587890625, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1119.0498046875, + "entries": 2065059.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 421.45703125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 4167.265625, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 4169.71484375, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1076.08203125, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1073.609375, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2688.015625, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 3854.79296875, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 5918.60546875, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 3914.421875, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 3299.060546875, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 4298.4453125, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 4436.169921875, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 8278.986328125, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 7664.439453125, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 5919.5390625, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 8294.865234375, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 4397.185546875, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 4575.80859375, + "entries": 2110601.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1072.337890625, + "entries": 2110601.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 1431.423828125, + "entries": 2110601.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 1449.22265625, + "entries": 2110601.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1553.24609375, + "entries": 2110601.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1816.287109375, + "entries": 2110601.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1072.23046875, + "entries": 2110601.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 2978.8203125, + "entries": 2110601.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1174.7802734375, + "entries": 2110601.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1182.853515625, + "entries": 2110601.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1173.201171875, + "entries": 2110601.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1054.5009765625, + "entries": 2110601.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1084.1416015625, + "entries": 2110601.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1188.208984375, + "entries": 2110601.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 865.9794921875, + "entries": 2110601.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 294.671875, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 1940.029296875, + "entries": 661264.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 2163.8486328125, + "entries": 661264.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 534.9609375, + "entries": 661264.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 536.26171875, + "entries": 661264.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 647.09765625, + "entries": 661264.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 663.8564453125, + "entries": 661264.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 692.3671875, + "entries": 661264.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 536.04296875, + "entries": 661264.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 3382.67578125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 2803.0390625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 2802.609375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 2802.98828125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 2802.68359375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 2805.140625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 2805.69921875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 5144.21875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 2648.45703125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 2648.02734375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 2648.72265625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 2643.2734375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 2644.5703125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 2645.828125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2576.51953125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 2809.11328125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 2629.14453125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2311.015625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 2802.1171875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 2652.92578125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 2574.65234375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 4580.8203125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 4674.40625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 4852.65625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 4898.453125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 4714.828125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 184.77734375, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 14577.8095703125, + "entries": 8709437.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 14356.6103515625, + "entries": 8709437.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 16681.56640625, + "entries": 8709437.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 5149.7421875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 5053.86328125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 5163.2265625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 5169.59765625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 640.5625, + "entries": 1480020, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 975.15625, + "entries": 1480020, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 743.25, + "entries": 1480020, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 295.1015625, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 1938.154296875, + "entries": 661264.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 1868.048828125, + "entries": 661264.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 692.6875, + "entries": 661264.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 256.91015625, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1203.708984375, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1228.732421875, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 1510.765625, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 1349.2919921875, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1087.8544921875, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1099.1982421875, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 1497.5234375, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 1285.6064453125, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 878.365234375, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1297.1552734375, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1254.9013671875, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1211.9443359375, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1176.2646484375, + "entries": 479951.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 391.8125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 2143.8671875, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 2577.7724609375, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 2881.3515625, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 2731.7294921875, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 2254.98828125, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 2259.34375, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 2131.9541015625, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1911.853515625, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1647.45703125, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 2720.7451171875, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1614.861328125, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 3602.78515625, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 2278.77734375, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 2225.2275390625, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 2259.8818359375, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 2173.0859375, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 2191.125, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1955.95703125, + "entries": 845498.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 903.625, + "entries": 845498.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1075.6025390625, + "entries": 845498.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1094.4296875, + "entries": 845498.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 707.1533203125, + "entries": 845498.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 838.123046875, + "entries": 845498.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 796.9462890625, + "entries": 845498.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1136.923828125, + "entries": 845498.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1096.36328125, + "entries": 845498.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 963.0791015625, + "entries": 845498.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 2797.09765625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 2656.2890625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 2420.5234375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 770.76953125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 12156.0703125, + "entries": 5619796.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 11302.109375, + "entries": 5619796.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 11229.0859375, + "entries": 5619796.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 7609.015625, + "entries": 5619796.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1315.15625, + "entries": 5619796.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 7977.33203125, + "entries": 5619796.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 2462.6171875, + "entries": 5619796.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 2360.109375, + "entries": 5619796.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1910.0703125, + "entries": 5619796.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 3940.265625, + "entries": 5619796.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 46.66796875, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 8273.4169921875, + "entries": 4439670.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2048.0390625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 1796.11328125, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 1582.8359375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 4044.7265625, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 1696.29296875, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 2282.58984375, + "entries": 1480020, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 990.87890625, + "entries": 1480020, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 969.50390625, + "entries": 1480020, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 541.953125, + "entries": 1480020, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 4070.443359375, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 3960.19921875, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 4056.31640625, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 3968.255859375, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2498.767578125, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1604.962890625, + "entries": 1671912.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 809.6953125, + "entries": 1430230.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2288.333984375, + "entries": 8742600.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1139.47265625, + "entries": 2065059.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 851.361328125, + "entries": 2110601.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 670.4853515625, + "entries": 845498.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3581.583984375, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 4835.1015625, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 3912.142578125, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2929.447265625, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 4812.7109375, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 4015.408203125, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4379.40234375, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4355.4453125, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 5000.1484375, + "entries": 1671912.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1261.19921875, + "entries": 1671912.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.0078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.51171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.93359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.93359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.93359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.71875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.50390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.85546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 89.10546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.3203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.27734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 143.02734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.5546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.32421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.45703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.12109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.38671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 233.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 230.62890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 227.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 225.84375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 224.26171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 224.89453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 195.28125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 180.859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.5234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.68359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.76953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.92578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.89453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.0859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.92578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.7109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.0546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 45.546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.86328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.50390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.65625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.9765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.4921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.6875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 134.359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.0546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 168.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.30859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.10546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.6875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.61328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.17578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.13671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.9921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.1875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.9140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.03125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.45703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 105.7578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.22265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 114.91796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.27734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.46484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.41796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.6796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.9921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.9609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.7578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.4140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.6484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 207.72265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.6015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 205.04296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.67578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.8203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.6953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 268.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.37109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.37109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.9375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.2421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 140.3359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 168.77734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 191.78515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 191.5703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.2734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 272.19140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 271.17578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 266.72265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 257.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.2578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 264.3125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 240.34375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.6875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.28515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.66796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.55859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 196.35546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 248.4921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 230.18359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 271.6640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.9765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 181.65625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.7265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.1640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 39.93359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.42578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.6015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.04296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 113.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.78125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.0703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.1640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.98828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.42578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.3359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.4453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.13671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 228.953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.55078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 267.15625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 263.66796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.1953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 246.28515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.0546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.01171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.13671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.42578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.0859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.11328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.8203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.60546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 185.9296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.6015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 223.38671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.6484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 252.17578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 255.69140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.17578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 262.76171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 255.60546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 259.32421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.00390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.08203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.04296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.73828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.44921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.11328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.37109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.6015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.7265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.58984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.52734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.1484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.2734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.68359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 182.73046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 191.48046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.9375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 271.13671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 269.69921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 267.796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 264.41015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.90625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.5078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.08984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 48.0703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.6484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.22265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 42.7265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 43.58984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 135.58984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 162.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 47.74609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 98.93359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.84375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 152.30078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.16015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 181.3671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 96.3671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.6484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.3203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.2578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 44.015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 41.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.0, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.93359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 78.4375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 127.25, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 77.22265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.40234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.98828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.51171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.0703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.8203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 89.39453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.37109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.22265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.51171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 41.3515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.15625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.38671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 42.40625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.09765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.8515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.51953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.37109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 43.37109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 44.015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 45.00390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 77.7421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 39.71875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.22265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 79.7265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 128.5390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 78.51171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.69140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 46.27734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 47.109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 90.68359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.66015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.4296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.51171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 42.640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 47.0546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.4453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 46.67578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 43.6953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 46.80859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.66015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 44.66015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 45.3046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 46.29296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 78.9921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.22265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.24609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.5078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.98828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.8984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.60546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.5390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.66015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.75, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.84765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.44140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.2421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.48828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.7265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.61328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.3671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.88671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.98046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.51171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.00390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.77734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.7421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.08984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.1484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.7890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.96875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.53515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.19140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.0546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.94921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.35546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.4453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.8046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.01953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.46484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.73046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.11328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.70703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.93359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.69140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.88671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.59375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.94140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.12890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.7890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.86328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.06640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.6796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.18359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.06640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.62890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.62890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.3828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.8203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.49609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.66796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.01953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.28515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.7578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.5234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.91796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.33203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.91015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.6015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.71484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.21875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.21875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.29296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.04296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.41796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.6328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.01171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.44921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.38671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.62890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.78515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.83203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.16796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.57421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.41796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.7109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.42578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.30078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.01171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.38671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.41796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.58984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.94140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.31640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.4375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.6953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.6640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.62890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.30859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.03125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.98046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.23046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.33203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.65625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.49609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.3828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.4375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.44140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.3046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.1171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.74609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.56640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.2578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.8046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.05859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.59375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.82421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.8046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.27734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.53125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.64453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.04296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.05859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.83984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.0546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.8828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.81640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.6171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.5390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.0859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.7578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.40234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.30859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.64453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.43359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.3203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.39453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.23046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.0703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.95703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.7265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.15625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.15625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.66015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.66015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.08203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.08203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.08203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.40234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.42578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.84765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.27734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.51953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.75, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.8359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.3359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.9453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.27734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.00390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.1171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.4609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.1875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.11328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.37890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.38671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.23828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.0625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.53125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.04296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.29296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.09765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.83984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.05859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.04296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.6953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.99609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.98828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.1015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.0625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.77734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.0390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.21875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.86328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.50390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.34765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.6171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.28125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.60546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.69140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.7421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.98046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.0546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.08984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.82421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.44140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.87890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.42578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.8046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.69140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.57421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.93359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.08984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.91015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.91796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.57421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.44921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.07421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.17578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.21484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.04296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.97265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.80859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.6015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.16015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.62890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.34375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.09765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.46484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.73828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.40234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.29296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.25390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.45703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.65625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.86328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.83984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.94921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.11328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.40625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.8125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.91015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.84375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.70703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 158.8203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 222.10546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.90625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 179.328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.50390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 149.23046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.27734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.28515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 143.8359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 139.83203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 158.77734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.38671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.55078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.27734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.8046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 247.4921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 233.5078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.5, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.9609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.75390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.28125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.11328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.3828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.7578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.53515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.68359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.1796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.05859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.28515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.42578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.16796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.0234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.71875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.13671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.6171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.03125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.38671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.6171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.46875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.46875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.01171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.15625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.23046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.23046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.9375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.7734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.9765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.0078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.87890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.609375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.05078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.8203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.71875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.3984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.2578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.21875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.46875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.8046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.28125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.2265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.6015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.6171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.57421875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.4296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.96484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.09375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.4765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.71484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 216.203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.33203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.6640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.9453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.9140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 49.484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.8515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.50390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.39453125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.6875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.1953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.1875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.2578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.28515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.80859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.796875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.1875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.23046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.45703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.01953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.40234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.67578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.4375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.21875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.23828125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.98046875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.19921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.63671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.46484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.83984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.88671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.5859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.53515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.91015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.33203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 46.296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.37109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.51171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.8359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.50390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.94140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.79296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.0078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.65234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.4375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.08203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 42.296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.71875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.8671875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.94921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.0234375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.37109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 44.66015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 43.80078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.91015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.51171875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.3515625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.51953125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.36328125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.05859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.95703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.94140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.08203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 45.390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.83984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 39.6015625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.43359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 40.46484375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 41.22265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.87109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.3984375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.2109375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 48.9921875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.7890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.255859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.677734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.5, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 35.85546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.744140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 37.2890625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.744140625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 36.83203125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.3359375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.705078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.427734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.630859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 34.078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 35.765625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.578125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.900390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.72265625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 33.900390625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 36.20703125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.640625, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.5302734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 21.5302734375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.5546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.55078125, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.55859375, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.54296875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 21.546875, + "entries": 1480020, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 44.92578125, + "entries": 1480020, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 54.03515625, + "entries": 1480020, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 4022.46484375, + "entries": 1480020, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 14201.5029296875, + "entries": 151052.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 7762.28515625, + "entries": 1480020, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 7728.41796875, + "entries": 1480020, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 69291.3203125, + "entries": 7981157.000000001, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 8505.5859375, + "entries": 1480020, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 8558.9375, + "entries": 1480020, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 151538.7294921875, + "entries": 1430230.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 59670.251953125, + "entries": 391683.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 2985.15625, + "entries": 89960.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 49053.162109375, + "entries": 2140443.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 381772.15234375, + "entries": 8742600.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 28378.03125, + "entries": 1480020, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 71162.513671875, + "entries": 1010004.0000000001, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 28054.34375, + "entries": 1480020, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 9135.34765625, + "entries": 197567.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 165314.447265625, + "entries": 2065059.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 98397.060546875, + "entries": 2110601.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 8009.13671875, + "entries": 661264.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 43804.453125, + "entries": 1480020, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 7749.2734375, + "entries": 1480020, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 8029.6953125, + "entries": 1480020, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 4580.8203125, + "entries": 1480020, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 4674.40625, + "entries": 1480020, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 4852.65625, + "entries": 1480020, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 4898.453125, + "entries": 1480020, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 4714.828125, + "entries": 1480020, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 45800.763671875, + "entries": 8709437.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 5149.7421875, + "entries": 1480020, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 5053.86328125, + "entries": 1480020, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 5163.2265625, + "entries": 1480020, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 5169.59765625, + "entries": 1480020, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 640.5625, + "entries": 1480020, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 975.15625, + "entries": 1480020, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 743.25, + "entries": 1480020, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 16338.22265625, + "entries": 479951.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 51237.3076171875, + "entries": 845498.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 7873.91015625, + "entries": 1480020, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 63032.6015625, + "entries": 5619796.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 8320.0849609375, + "entries": 4439670.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 15410.98046875, + "entries": 1480020, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 59783.48828125, + "entries": 1671912.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 30267.15234375, + "entries": 1480020, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 2875.16015625, + "entries": 1480020, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 39.71875, + "entries": 1480020, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 41.22265625, + "entries": 1480020, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 29109.66015625, + "entries": 1480020, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_IsoMu24_eta2p1", + "HLT_IsoTkMu24_eta2p1", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 41.22265625, + "entries": 1480020, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 17, + "allsize": 0.134765625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.134765625, + "entries": 17, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.134765625, + "entries": 17, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 2368, + "allsize": 2.3447265625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2373046875, + "entries": 2368, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.4169921875, + "entries": 2368, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2275390625, + "entries": 2368, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.22265625, + "entries": 2368, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.240234375, + "entries": 2368, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2373046875, + "entries": 2368, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.4169921875, + "entries": 2368, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2275390625, + "entries": 2368, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.22265625, + "entries": 2368, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.240234375, + "entries": 2368, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30562/SingleElectron_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30562/SingleElectron_doc.html new file mode 100644 index 000000000..bbfb5e8a1 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30562/SingleElectron_doc.html @@ -0,0 +1,1651 @@ + + + + Documentation for 02A9B576-790A-9141-9762-AA2831FABF58.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ORBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30562/SingleElectron_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30562/SingleElectron_doc.json new file mode 100644 index 000000000..f4705cc5d --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30562/SingleElectron_doc.json @@ -0,0 +1,14064 @@ +{ + "filename": "02A9B576-790A-9141-9762-AA2831FABF58.root", + "filesize": 2112064.8193359375, + "trees": { + "Events": { + "entries": 2338304, + "allsize": 2106435.1884765625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 60.341796875, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 66.880859375, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 6239.376953125, + "entries": 2338304, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 299.853515625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 767.525390625, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 942.17578125, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 826.134765625, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 829.427734375, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 692.6171875, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 666.923828125, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 677.509765625, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 946.0234375, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 532.947265625, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 1088.923828125, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 831.642578125, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 834.494140625, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 786.349609375, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 743.541015625, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 855.859375, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 822.8203125, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 1065.8125, + "entries": 201771.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 464.068359375, + "entries": 201771.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 502.4453125, + "entries": 201771.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 407.619140625, + "entries": 201771.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 525.68359375, + "entries": 201771.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 468.572265625, + "entries": 201771.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 403.4794921875, + "entries": 201771.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 522.6865234375, + "entries": 201771.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 521.5263671875, + "entries": 201771.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 523.3701171875, + "entries": 201771.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4403.029296875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 4090.53515625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3713.525390625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4417.453125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 4104.408203125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3657.10546875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1210.912109375, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 9986.8330078125, + "entries": 11543885.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 26479.830078125, + "entries": 11543885.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 17206.1396484375, + "entries": 11543885.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 26747.830078125, + "entries": 11543885.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 18697.7216796875, + "entries": 11543885.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 5262.373046875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 8136.44140625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 5326.365234375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 8130.06640625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 578.025390625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 5883.13671875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 5883.734375, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1583.71875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1587.79296875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 7041.970703125, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 4581.16796875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 4133.552734375, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 3073.5625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 2977.0546875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7361.97265625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 4890.943359375, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7462.787109375, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 4973.29296875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 7887.171875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 7307.23828125, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 5175.72265625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 7822.984375, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 4702.01171875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 7020.490234375, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 5752.244140625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 6086.90625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 7057.962890625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 7951.466796875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 6363.298828125, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 8121.767578125, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 8332.462890625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 8855.978515625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 7792.216796875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 7861.61328125, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 10996.599609375, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 5665.212890625, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 5936.814453125, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 5961.20703125, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 6810.29296875, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 7398.470703125, + "entries": 2741495.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 2063.189453125, + "entries": 2741495.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 2496.240234375, + "entries": 2741495.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2413.130859375, + "entries": 2741495.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 2076.5, + "entries": 2741495.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 2215.36328125, + "entries": 2741495.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 2155.69921875, + "entries": 2741495.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 4553.1015625, + "entries": 2741495.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 4004.65234375, + "entries": 2741495.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 1496.111328125, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 1678.16796875, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1639.337890625, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 2314.029296875, + "entries": 2741495.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1819.494140625, + "entries": 2741495.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 1690.640625, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 1705.60546875, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 1689.244140625, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 1697.0234375, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 1710.796875, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1678.228515625, + "entries": 2741495.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1308.982421875, + "entries": 2741495.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 419.650390625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 990.5537109375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1586.935546875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 1704.953125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 1574.7109375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 1651.4609375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1621.474609375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 1609.359375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 1441.0244140625, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 1590.7470703125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1560.1474609375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1420.5185546875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 1590.69921875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 1506.0, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 1557.4345703125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1405.1865234375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 1588.87890625, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 1490.2421875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 1654.087890625, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1488.6875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 1548.876953125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 1708.6923828125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 1673.8603515625, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 1672.0205078125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 1880.12109375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 1550.1162109375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 1464.638671875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1267.6748046875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 825.3740234375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 1523.880859375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 1693.736328125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 1638.384765625, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 1652.013671875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 1730.1162109375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 1694.6513671875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 1680.6513671875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 1482.46875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 1721.2666015625, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 1669.1455078125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 1674.3330078125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 1591.4990234375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 1877.62890625, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 1433.1923828125, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1145.384765625, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1589.4443359375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1588.4013671875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1587.4912109375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1590.3076171875, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 1348.8271484375, + "entries": 520362.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 637.603515625, + "entries": 520362.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 755.3798828125, + "entries": 520362.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 753.1025390625, + "entries": 520362.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 739.7939453125, + "entries": 520362.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 641.3564453125, + "entries": 520362.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 951.392578125, + "entries": 520362.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 81.21875, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 158.1513671875, + "entries": 4957.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 151.3134765625, + "entries": 4957.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 151.2236328125, + "entries": 4957.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 149.244140625, + "entries": 4957.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 157.43359375, + "entries": 4957.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 136.8251953125, + "entries": 4957.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 827.216796875, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 7835.001953125, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7736.9287109375, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 8268.302734375, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 6055.287109375, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4781.951171875, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 8307.9853515625, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6764.4833984375, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5518.388671875, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3330.634765625, + "entries": 3069901.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1932.5380859375, + "entries": 3069901.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1968.5107421875, + "entries": 3069901.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1973.07421875, + "entries": 3069901.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1660.62890625, + "entries": 3069901.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1223.123046875, + "entries": 3069901.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1449.015625, + "entries": 3069901.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1158.22265625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 8476.51953125, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 15818.8359375, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 14612.34375, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 13452.6015625, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 13752.74609375, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 20596.4296875, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 17217.328125, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 19017.703125, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 18227.66796875, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 5756.84765625, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 13235.26171875, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 13315.93359375, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 24886.25, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4314.23046875, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4311.5625, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 19112.1875, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 3233.7734375, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 15969.72265625, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 14954.23828125, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 13683.83984375, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 24643.8671875, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 19053.6640625, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 19181.65625, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 13672.70703125, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 15607.296875, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 16038.94921875, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 12835.50390625, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 15763.328125, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 13302.5859375, + "entries": 10626367.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3888.19921875, + "entries": 10626367.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2257.11328125, + "entries": 10626367.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2232.8125, + "entries": 10626367.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2685.29296875, + "entries": 10626367.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3619.94140625, + "entries": 10626367.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2544.5390625, + "entries": 10626367.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2165.8671875, + "entries": 10626367.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3647.43359375, + "entries": 10626367.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2577.40625, + "entries": 10626367.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 4906.8125, + "entries": 10626367.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 8032.521484375, + "entries": 10626367.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1915.60546875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1869.052734375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1889.72265625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1902.728515625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 358.91796875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 158.423828125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 371.923828125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 357.962890625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 361.857421875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 2076.650390625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2095.02734375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 708.53515625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 10415.265625, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 2311.248046875, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 6806.890625, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 6858.767578125, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 4733.4375, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 7033.99609375, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 4632.525390625, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 6797.345703125, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 10213.8046875, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 4906.994140625, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 7431.162109375, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 4061.619140625, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 6752.5078125, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 6998.51171875, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 5347.76171875, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 7414.154296875, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 10444.82421875, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 9135.30859375, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 6506.34375, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 5782.66015625, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 5316.818359375, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 9865.69921875, + "entries": 2545478.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1985.97265625, + "entries": 2545478.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1894.26171875, + "entries": 2545478.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1987.849609375, + "entries": 2545478.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1509.8203125, + "entries": 2545478.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1843.50390625, + "entries": 2545478.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4578.19921875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4579.13671875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 3030.818359375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3753.072265625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 3029.884765625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 5309.376953125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 8090.96484375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 4390.8828125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3684.791015625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3668.22265625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 299.529296875, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1283.712890625, + "entries": 335330.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1363.2001953125, + "entries": 335330.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1363.7783203125, + "entries": 335330.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 511.6396484375, + "entries": 335330.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 511.9765625, + "entries": 335330.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1173.0830078125, + "entries": 335330.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 509.69921875, + "entries": 335330.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 401.462890625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 1578.47265625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1120.548828125, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 1587.91015625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 1597.134765625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1172.73828125, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 1627.015625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 1522.908203125, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1085.494140625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 1296.6796875, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 673.861328125, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 1755.419921875, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 1448.787109375, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 1846.775390625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 1653.779296875, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 1939.166015625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 1623.37109375, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 2025.564453125, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 1197.75390625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 1469.171875, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 1520.98828125, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 904.984375, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 1100.947265625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 653.669921875, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 1289.216796875, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 1369.416015625, + "entries": 417336.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 672.892578125, + "entries": 417336.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 765.474609375, + "entries": 417336.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 756.28125, + "entries": 417336.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 853.990234375, + "entries": 417336.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 673.5859375, + "entries": 417336.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 620.5, + "entries": 417336.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 588.775390625, + "entries": 417336.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 624.5439453125, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 616.1005859375, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 600.0029296875, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 630.6728515625, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 630.9345703125, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 631.0009765625, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 618.390625, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 736.9794921875, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 630.345703125, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 624.5322265625, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 605.4521484375, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 690.8125, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 622.2099609375, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 555.203125, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 550.0537109375, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 692.333984375, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 654.3349609375, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 627.7216796875, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 607.6171875, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 605.365234375, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 640.619140625, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 632.8974609375, + "entries": 417336.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 514.771484375, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 6163.15234375, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 6161.5546875, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1610.64453125, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1607.125, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 4038.73046875, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 5623.78125, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 8637.28515625, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 5213.9375, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 4781.787109375, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 6957.01171875, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 6848.580078125, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 10429.048828125, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 8760.951171875, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 8677.32421875, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 12112.654296875, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 6171.029296875, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 6473.29296875, + "entries": 3088372.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1605.162109375, + "entries": 3088372.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 2499.505859375, + "entries": 3088372.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 2422.453125, + "entries": 3088372.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 2305.32421875, + "entries": 3088372.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2458.162109375, + "entries": 3088372.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1605.15234375, + "entries": 3088372.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 3722.859375, + "entries": 3088372.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1749.142578125, + "entries": 3088372.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1749.58984375, + "entries": 3088372.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1744.3046875, + "entries": 3088372.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1747.236328125, + "entries": 3088372.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1743.365234375, + "entries": 3088372.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1656.3984375, + "entries": 3088372.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1302.392578125, + "entries": 3088372.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 470.3046875, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 3198.8017578125, + "entries": 1102965.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 3570.2509765625, + "entries": 1102965.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 858.1943359375, + "entries": 1102965.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 859.8828125, + "entries": 1102965.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1041.3779296875, + "entries": 1102965.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1069.080078125, + "entries": 1102965.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 1115.80859375, + "entries": 1102965.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 859.7197265625, + "entries": 1102965.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 5299.19140625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4398.376953125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4397.810546875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4397.419921875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4399.115234375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4398.880859375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4402.353515625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 8120.916015625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 4127.90234375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 4127.3359375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 4129.1015625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 4126.40625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 4127.03125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 4131.20703125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4100.66796875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4407.35546875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 4108.716796875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3675.1875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4397.353515625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 4131.078125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 4075.720703125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 7424.40625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 7520.37890625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 7580.8984375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 7781.556640625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 7594.787109375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 376.29296875, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 22488.96875, + "entries": 13508112.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 22207.9140625, + "entries": 13508112.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 25568.6015625, + "entries": 13508112.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 8064.798828125, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 7318.818359375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 8056.37109375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 7867.32421875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 900.29296875, + "entries": 2338304, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1485.884765625, + "entries": 2338304, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1074.376953125, + "entries": 2338304, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 470.87109375, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 3191.947265625, + "entries": 1102965.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 3084.681640625, + "entries": 1102965.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 1116.126953125, + "entries": 1102965.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 375.322265625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 1504.513671875, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 1522.916015625, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 1974.7890625, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 1798.8935546875, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 1395.4794921875, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1388.6083984375, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 1963.3984375, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 1687.5478515625, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 1178.884765625, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 1660.3896484375, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 1575.8349609375, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 1502.0615234375, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 1443.5107421875, + "entries": 620407.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 582.34375, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 3995.9609375, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 5478.154296875, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 6247.96484375, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 5912.423828125, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 4821.59375, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 4891.43359375, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 3296.568359375, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 3047.16015625, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 2916.85546875, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 5888.044921875, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 2157.30078125, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 7993.69921875, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 4937.82421875, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 5258.818359375, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 4665.591796875, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 4397.41015625, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 4114.265625, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 3301.828125, + "entries": 1975981.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 1755.82421875, + "entries": 1975981.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 1973.658203125, + "entries": 1975981.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1951.67578125, + "entries": 1975981.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 1289.9697265625, + "entries": 1975981.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 1268.732421875, + "entries": 1975981.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 1456.0205078125, + "entries": 1975981.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1951.353515625, + "entries": 1975981.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 2273.37109375, + "entries": 1975981.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 1715.4619140625, + "entries": 1975981.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 4394.568359375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 4119.0625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3828.072265625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 992.953125, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 15814.11328125, + "entries": 7054535.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 15049.712890625, + "entries": 7054535.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 15042.458984375, + "entries": 7054535.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 9846.1328125, + "entries": 7054535.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 2019.6640625, + "entries": 7054535.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 8787.1875, + "entries": 7054535.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 3391.11328125, + "entries": 7054535.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 3436.150390625, + "entries": 7054535.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 2059.3515625, + "entries": 7054535.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 5314.31640625, + "entries": 7054535.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 67.16015625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 12937.228515625, + "entries": 7004993.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 3241.310546875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2870.19140625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2539.55859375, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 6353.97265625, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2693.466796875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3604.07421875, + "entries": 2338304, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1510.033203125, + "entries": 2338304, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1475.189453125, + "entries": 2338304, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 590.994140625, + "entries": 2338304, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 3077.388671875, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 2963.62109375, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 3062.140625, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 2967.177734375, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2036.861328125, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1398.802734375, + "entries": 1106639.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1264.65625, + "entries": 2741495.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3035.154296875, + "entries": 10626367.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 626.07421875, + "entries": 417336.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1257.90625, + "entries": 3088372.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1210.0400390625, + "entries": 1975981.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 2751.302734375, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 3591.23046875, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 2938.544921875, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 2240.552734375, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 3575.203125, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 3012.037109375, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 3301.796875, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 3283.01953125, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 3673.7421875, + "entries": 1106639.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1123.05859375, + "entries": 1106639.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.052734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.185546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.16796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.76953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.76953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.619140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.3359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.76953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.919921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.486328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 252.150390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 192.767578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 193.826171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 190.486328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 221.873046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.314453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 200.568359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 340.373046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 297.314453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 329.111328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.251953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 342.021484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 336.345703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 333.208984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 330.279296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 326.638671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 323.970703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 285.625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 270.109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 254.48828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.603515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.361328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.427734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 137.662109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.142578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.1640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.41796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.0703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.93359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.9609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.20703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.84765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.673828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.23046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.912109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.65625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.673828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.2265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.25390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.611328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.72265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.98046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.61328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.06640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 289.58203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.0234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 328.30078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 141.232421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 119.572265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.63671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.06640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.49609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 129.39453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.7265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.12109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.19921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.3125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.6015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.27734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.63671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.884765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.919921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.919921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.919921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.919921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.919921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.63671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.619140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.63671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.63671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.619140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.083984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.357421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.978515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.361328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 178.205078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.626953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.287109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 219.658203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 286.791015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 272.443359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 272.107421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 339.154296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 341.767578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 264.6953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.59765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.1875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.6796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.318359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.30078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.318359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.30078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.71484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.15234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.833984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.705078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.65625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.408203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.533203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.365234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.501953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.275390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.57421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.78125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.2109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.82421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.119140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.3359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.052734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.544921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.052734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.658203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.517578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.158203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.509765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.04296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.212890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.505859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.357421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.439453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.76953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.599609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.103515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 158.474609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.255859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.71875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.794921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.685546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.802734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.111328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.658203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.623046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 265.595703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 297.083984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 378.732421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 403.638671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 412.248046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 412.677734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 395.337890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.0703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.80078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.3203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.46875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.55859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.67578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.16015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 131.4453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 223.265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.53515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 270.87109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 251.3984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 300.625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 286.6640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 382.76171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 364.25, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 404.13671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 394.84375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 413.26171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 409.2578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.212890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.6015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.814453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.802734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.37890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.876953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.314453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.044921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.37109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 202.884765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.72265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.94140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.318359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.12109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.451171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.27734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.052734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.052734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.443359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.111328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.052734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.248046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.587890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.939453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.052734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.146484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.080078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.310546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.365234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.8515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.591796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 73.857421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.59765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.16796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.46875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.697265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.451171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 214.810546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 250.666015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 126.23828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 132.158203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.810546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 196.232421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.025390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.853515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.6171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.501953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.005859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.365234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.154296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.318359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.47265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.048828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 109.365234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 176.38671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 104.623046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 88.15234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.498046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.822265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.548828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 129.439453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.982421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.392578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.46875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.16796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.6484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.447265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 57.111328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.76953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.1328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.7109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.19921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.1328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.30078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.30078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.150390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.462890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 107.705078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 53.486328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 59.748046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 111.064453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 178.0859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 106.322265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 89.8515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.197265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.87109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.521484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.248046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 131.138671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.681640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.091796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.16796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.34765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.146484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.810546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.46875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.83203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.83203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.0, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.0, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.849609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 62.162109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 109.400390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.46875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.30859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.365234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.990234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.8515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.595703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.572265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.83203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.333984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.783203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.791015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.9765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.8359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.38671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.341796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.12890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.349609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 140.318359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.283203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 158.5625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 159.462890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.0546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.470703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.0703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.607421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 128.4921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 125.998046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 181.2578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.69921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.6015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.970703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.923828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.060546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.57421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.91796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.259765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.474609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.4296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.294921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.888671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.326171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.892578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.326171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.73828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.16796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.853515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.30078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.13671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 204.5703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.33203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 186.59765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 206.779296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 389.0625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 157.974609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 365.330078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.46484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.7890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 403.08984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 395.380859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 415.671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 409.251953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 419.15234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 249.064453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 179.771484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 156.857421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.197265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.451171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.662109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.990234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.423828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.0078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.1171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.19921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.35546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.509765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.798828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.58203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.80078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.396484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.048828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.0625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.185546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.8359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.041015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.6875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.494140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.119140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.04296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.892578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.548828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.30859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.251953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.873046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.060546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.005859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.6015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.572265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.23046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.162109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.185546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.91015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.25, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.486328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.80859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.0703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.228515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.345703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.291015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.197265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.12890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 90.1015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.89453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.736328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.357421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.4921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.185546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.64453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.400390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.298828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.46875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.001953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.720703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.22265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.08203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.185546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.69921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.22265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.61328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.404296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.25390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.744140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.306640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.78515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.3359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.869140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.15625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.037109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.763671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.9609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.56640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.267578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.33203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.626953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.74609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.18359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.634765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.478515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.08203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.80078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.87890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.60546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.45703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.20703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.44921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.451171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.451171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.017578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.017578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.35546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.37890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.44140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.029296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.798828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.013671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.654296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.607421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.111328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.623046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.533203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.564453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.607421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.4453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.73046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.53515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.9140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.9375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.4453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.15625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.91796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.9765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.724609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.080078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.818359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.333984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.271484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.376953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.69921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.966796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.974609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.392578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.150390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.154296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.74609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.662109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.8515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.0390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.865234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.607421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.810546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.861328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.607421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.267578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.181640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.271484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.642578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.103515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.974609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.59375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.576171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.685546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.654296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.830078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.220703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.16796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.6171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.69140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.197265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.16015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.61328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.685546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.916015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.693359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.09375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.005859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.119140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.419921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.083984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.412109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.423828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.4140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.80859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.115234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.267578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.96875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.15234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.298828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.259765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.353515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.767578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.01953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.876953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.005859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.72265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.57421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.25390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.884765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.068359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.845703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.685546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.810546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.787109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.056640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.330078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.86328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.33984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.193359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.50390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.501953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.9765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.6328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.66796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.9765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.8203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.314453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.705078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.451171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.67578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 180.927734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 128.755859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.306640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.970703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.751953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.38671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.041015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.912109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.513671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.298828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.095703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.958984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.0234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.462890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.228515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.86328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.673828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.474609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.794921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.830078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.33984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.3359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.0859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.31640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.4296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.1953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.55859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.94140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.2421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.54296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.96875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.85546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.615234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.294921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.15234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.044921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.091796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.623046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.267578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.892578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.978515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.53515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.4921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 141.265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.154296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.982421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.740234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.8359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.353515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.2109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.052734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.716796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.2265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.017578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.455078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.322265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.615234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.958984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.193359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.021484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.560546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.494140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.7734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.73828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.19921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.3828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.248046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.0, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.880859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.130859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.927734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.162109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.099609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.2109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.25, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 199.4921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.095703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.626953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.849609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.400390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.783203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.833984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.8203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.892578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.419921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 175.560546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 142.677734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.298828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.4609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.603515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.46484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.87109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.4296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.275390625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.029296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.81640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.31640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.357421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.71484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.662109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.802734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.98828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.95703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 247.494140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.646484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.482421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 231.939453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 158.404296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.451171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.20703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 149.3203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.30078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.583984375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.783203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.69140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.65234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.880859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.748046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.353515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.353515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.232421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.380859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.77734375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.90234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.185546875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.3359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.3359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.3359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.619140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.03515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.751953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.751953125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.318359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR": { + "name": "HLT_L1MinimumBiasHF_OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.6015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.884765625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.498046875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.34375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.318359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.703125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.115234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.30078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.0, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.896484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.353515625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.966796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.951171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.3203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.74609375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.2265625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.2109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.40234375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.9140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.8359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.79296875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.806640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.541015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.39453125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.23828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.56640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.66796875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.46875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.484375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.67578125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.83203125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.5625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.1015625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.44921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.26171875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.44921875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.69140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.4140625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.05859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 122.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 118.0859375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.40625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.40625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.07421875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.18359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.13671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.8671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.13671875, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.640625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 26.0078125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.8798828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 25.8798828125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.37890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.37890625, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.37109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.359375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.37109375, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 26.36328125, + "entries": 2338304, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 60.341796875, + "entries": 2338304, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 66.880859375, + "entries": 2338304, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 6239.376953125, + "entries": 2338304, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 18550.033203125, + "entries": 201771.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12207.08984375, + "entries": 2338304, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 12178.966796875, + "entries": 2338304, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 100329.2666015625, + "entries": 11543885.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 13398.814453125, + "entries": 2338304, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 13456.431640625, + "entries": 2338304, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 262543.04296875, + "entries": 2741495.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 79435.58203125, + "entries": 520362.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 985.41015625, + "entries": 4957.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 69633.0712890625, + "entries": 3069901.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 466796.8984375, + "entries": 10626367.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 13357.873046875, + "entries": 2338304, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 159697.58984375, + "entries": 2545478.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 44115.349609375, + "entries": 2338304, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 14880.24609375, + "entries": 335330.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 54848.9375, + "entries": 417336.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 140351.6171875, + "entries": 3088372.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 13043.4208984375, + "entries": 1102965.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 68683.716796875, + "entries": 2338304, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12191.259765625, + "entries": 2338304, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 12604.15234375, + "entries": 2338304, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 7424.40625, + "entries": 2338304, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7520.37890625, + "entries": 2338304, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 7580.8984375, + "entries": 2338304, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7781.556640625, + "entries": 2338304, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 7594.787109375, + "entries": 2338304, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 70641.77734375, + "entries": 13508112.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 8064.798828125, + "entries": 2338304, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 7318.818359375, + "entries": 2338304, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 8056.37109375, + "entries": 2338304, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 7867.32421875, + "entries": 2338304, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 900.29296875, + "entries": 2338304, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1485.884765625, + "entries": 2338304, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1074.376953125, + "entries": 2338304, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 20972.150390625, + "entries": 620407.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 100751.349609375, + "entries": 1975981.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 12341.703125, + "entries": 2338304, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 81753.154296875, + "entries": 7054535.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 13004.388671875, + "entries": 7004993.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 24287.796875, + "entries": 2338304, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 45587.474609375, + "entries": 1106639.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 32707.935546875, + "entries": 2338304, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleTau70er", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETT55_BptxAND", + "L1_ETT75_BptxAND", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 3926.4921875, + "entries": 2338304, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 53.486328125, + "entries": 2338304, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 55.46875, + "entries": 2338304, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 37971.27734375, + "entries": 2338304, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu24_eta2p1", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu24_eta2p1", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1MinimumBiasHF_OR", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 55.46875, + "entries": 2338304, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 19, + "allsize": 0.142578125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.142578125, + "entries": 19, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.142578125, + "entries": 19, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 957, + "allsize": 2.2509765625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2177734375, + "entries": 957, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.4091796875, + "entries": 957, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2080078125, + "entries": 957, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.203125, + "entries": 957, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.212890625, + "entries": 957, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2177734375, + "entries": 957, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.4091796875, + "entries": 957, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2080078125, + "entries": 957, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.203125, + "entries": 957, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.212890625, + "entries": 957, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30563/SingleMuon_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30563/SingleMuon_doc.html new file mode 100644 index 000000000..5d1a3e937 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30563/SingleMuon_doc.html @@ -0,0 +1,1650 @@ + + + + Documentation for 61FC1E38-F75C-6B44-AD19-A9894155874E.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30563/SingleMuon_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30563/SingleMuon_doc.json new file mode 100644 index 000000000..8fddf76a3 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30563/SingleMuon_doc.json @@ -0,0 +1,14054 @@ +{ + "filename": "61FC1E38-F75C-6B44-AD19-A9894155874E.root", + "filesize": 14350.845703125, + "trees": { + "Events": { + "entries": 14113, + "allsize": 11258.849609375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.5771484375, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.6201171875, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 37.6923828125, + "entries": 14113, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 1.8544921875, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 3.9140625, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 4.5078125, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 4.0546875, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 4.01953125, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 3.63671875, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 3.3359375, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 3.40625, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 4.5078125, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 2.9375, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 4.9140625, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 4.05859375, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 4.234375, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 3.97265625, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 3.85546875, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 4.23046875, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 4.0859375, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 5.078125, + "entries": 847.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 2.41796875, + "entries": 847.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 2.6171875, + "entries": 847.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2.15625, + "entries": 847.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 2.640625, + "entries": 847.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 2.5859375, + "entries": 847.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 2.26953125, + "entries": 847.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 2.6484375, + "entries": 847.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 2.65625, + "entries": 847.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 2.6875, + "entries": 847.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 27.0498046875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 25.0859375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 23.2783203125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 27.12109375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 25.2314453125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 22.458984375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 7.5986328125, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 54.60546875, + "entries": 61076.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 143.390625, + "entries": 61076.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 94.0546875, + "entries": 61076.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 145.015625, + "entries": 61076.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 101.34765625, + "entries": 61076.00000000001, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 32.4501953125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 49.158203125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 32.8544921875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 49.7421875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 2.8916015625, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 8.9453125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 8.921875, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 3.87890625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 3.87109375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 10.24609375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 4.84375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 4.83984375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 4.70703125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 4.72265625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 10.80859375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 7.9375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 10.9765625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 7.98828125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 11.796875, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 10.4453125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 8.28125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 11.2265625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 8.09765625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 10.48046875, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 8.63671875, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 8.98828125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 10.36328125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 13.83984375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 12.4609375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 11.76953125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 12.1875, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 13.953125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 13.09765625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 11.19921875, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 14.12890625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 9.09765625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 9.1484375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 9.34765625, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 10.17578125, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 8.83984375, + "entries": 2923.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 4.55859375, + "entries": 2923.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 4.296875, + "entries": 2923.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 5.39453125, + "entries": 2923.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 4.5625, + "entries": 2923.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 4.7109375, + "entries": 2923.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 4.64453125, + "entries": 2923.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 8.99609375, + "entries": 2923.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 8.08984375, + "entries": 2923.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 3.8515625, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 3.73828125, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 4.2734375, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 5.1328125, + "entries": 2923.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 4.27734375, + "entries": 2923.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 3.8359375, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 3.92578125, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 3.98828125, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 3.91796875, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 3.98828125, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 4.0390625, + "entries": 2923.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 3.71484375, + "entries": 2923.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 2.2060546875, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 4.1796875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 6.125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 6.5703125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 6.359375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 6.4765625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 6.328125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 6.453125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 5.97265625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 6.14453125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 6.078125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 5.84765625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 6.12109375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 5.8984375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 6.12890625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 5.82421875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 6.11328125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 5.86328125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 6.46484375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 6.09765625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 6.53125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 6.6328125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 6.57421875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 6.515625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 7.125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 6.00390625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 5.734375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 5.2578125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 3.6328125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 6.1328125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 6.59375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 6.5, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 6.56640625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 6.68359375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 6.609375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 6.57421875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 6.13671875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 6.671875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 6.5703125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 6.5078125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 6.1484375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 7.1015625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 5.62890625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 4.62109375, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 6.1171875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 6.0703125, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 6.0390625, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 6.04296875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 5.421875, + "entries": 1744.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 2.62890625, + "entries": 1744.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 3.18359375, + "entries": 1744.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 3.1875, + "entries": 1744.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 2.9765625, + "entries": 1744.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 3.19921875, + "entries": 1744.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 3.86328125, + "entries": 1744.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 1.46484375, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 3.4921875, + "entries": 470.00000000000006, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 3.05078125, + "entries": 470.00000000000006, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 3.0390625, + "entries": 470.00000000000006, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 2.80859375, + "entries": 470.00000000000006, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 3.34375, + "entries": 470.00000000000006, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 1.72265625, + "entries": 470.00000000000006, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 4.8330078125, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 32.3828125, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 31.85546875, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 34.171875, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 25.41796875, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 20.9765625, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 34.3203125, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 28.296875, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 22.9140625, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 15.390625, + "entries": 11429.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 9.828125, + "entries": 11429.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 9.8359375, + "entries": 11429.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 10.3203125, + "entries": 11429.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 8.375, + "entries": 11429.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 6.76953125, + "entries": 11429.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 7.8515625, + "entries": 11429.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 7.177734375, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 45.4921875, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 85.7265625, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 82.15234375, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 77.734375, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 78.5, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 109.64453125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 93.15625, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 103.51953125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 97.6875, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 19.2734375, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 70.94140625, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 71.1796875, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 130.88671875, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 22.10546875, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 22.13671875, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 100.2265625, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 37.859375, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 84.75390625, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 78.46875, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 71.2578125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 129.08984375, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 100.203125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 100.4453125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 72.5234375, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 83.01953125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 85.6328125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 67.1328125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 83.53125, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 70.56640625, + "entries": 53961.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 17.109375, + "entries": 53961.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 13.41015625, + "entries": 53961.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 13.64453125, + "entries": 53961.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 15.55859375, + "entries": 53961.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 21.1875, + "entries": 53961.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 22.4609375, + "entries": 53961.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 15.17578125, + "entries": 53961.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 16.9296875, + "entries": 53961.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 21.7578125, + "entries": 53961.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 26.7265625, + "entries": 53961.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 41.875, + "entries": 53961.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 30.404296875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 5.9501953125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 6.01953125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 6.0478515625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 29.9375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 28.9619140625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 30.2236328125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 29.4853515625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 30.3876953125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 31.7783203125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 32.314453125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 3.3984375, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 21.1328125, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 5.82421875, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 15.203125, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 15.0703125, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 10.88671875, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 15.46484375, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 10.87109375, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 14.625, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 20.04296875, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 11.6171875, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 16.04296875, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 9.59765625, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 14.5, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 16.48828125, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 13.1328125, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 15.984375, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 20.5234375, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 19.01171875, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 13.64453125, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 12.88671875, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 11.4453125, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 19.1484375, + "entries": 4519.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 5.8984375, + "entries": 4519.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 5.171875, + "entries": 4519.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 5.890625, + "entries": 4519.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 5.0390625, + "entries": 4519.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 5.515625, + "entries": 4519.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 28.138671875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 28.115234375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 18.6962890625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 22.7666015625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 18.6884765625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 32.6435546875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 49.07421875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 26.951171875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 22.4462890625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 22.396484375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 2.7021484375, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 10.14453125, + "entries": 2639.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 10.76953125, + "entries": 2639.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 10.78125, + "entries": 2639.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 4.01953125, + "entries": 2639.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 4.01953125, + "entries": 2639.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 9.25, + "entries": 2639.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 4.00390625, + "entries": 2639.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 3.3291015625, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 47.94140625, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 29.3046875, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 47.81640625, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 48.16796875, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 30.33984375, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 50.88671875, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 47.21484375, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 36.39453125, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 39.30859375, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 11.86328125, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 52.20703125, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 40.234375, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 58.5546875, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 49.86328125, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 63.61328125, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 50.57421875, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 72.3984375, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 32.484375, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 42.2890625, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 44.765625, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 25.03125, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 27.87890625, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 11.91015625, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 42.84375, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 43.4609375, + "entries": 17976.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 12.859375, + "entries": 17976.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 15.3125, + "entries": 17976.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 16.0234375, + "entries": 17976.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 18.546875, + "entries": 17976.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 12.8984375, + "entries": 17976.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 10.359375, + "entries": 17976.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 10.73046875, + "entries": 17976.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 10.1796875, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 9.16796875, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 8.28515625, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 9.50390625, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 9.421875, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 9.2734375, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 9.28515625, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 14.63671875, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 9.42578125, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 9.765625, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 10.2109375, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 13.10546875, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 10.46484375, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 12.74609375, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 7.6640625, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 14.20703125, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 12.56640625, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 9.48046875, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 10.25, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 9.97265625, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 11.50390625, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 9.546875, + "entries": 17976.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 3.0654296875, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 9.59765625, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 9.61328125, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 4.1171875, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 4.10546875, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 7.29296875, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 9.328125, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 12.7421875, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 9.16796875, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 8.57421875, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 9.75, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 10.078125, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 16.25390625, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 15.1640625, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 12.70703125, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 16.0, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 10.30078125, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 10.40625, + "entries": 3461.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 4.08984375, + "entries": 3461.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 4.46875, + "entries": 3461.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 4.54296875, + "entries": 3461.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 4.96875, + "entries": 3461.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 5.6640625, + "entries": 3461.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 4.09375, + "entries": 3461.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 7.96484375, + "entries": 3461.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 4.4765625, + "entries": 3461.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 4.546875, + "entries": 3461.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 4.47265625, + "entries": 3461.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 4.21484375, + "entries": 3461.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 4.28125, + "entries": 3461.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 4.50390625, + "entries": 3461.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 3.921875, + "entries": 3461.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 4.11328125, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 24.3203125, + "entries": 8458.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 27.046875, + "entries": 8458.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 6.42578125, + "entries": 8458.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 6.42578125, + "entries": 8458.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 7.76171875, + "entries": 8458.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 7.98046875, + "entries": 8458.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 8.40625, + "entries": 8458.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 6.4296875, + "entries": 8458.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 32.599609375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 27.0146484375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 27.0087890625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 26.9990234375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 27.0205078125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 27.1044921875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 27.0322265625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 49.4794921875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 25.3203125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 25.314453125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 25.30859375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 25.357421875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 25.73046875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 25.361328125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 25.3828125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 27.04296875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 25.2314453125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 22.365234375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 27.0224609375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 25.27734375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 25.2197265625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 43.67578125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 44.91015625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 48.49609375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 48.8076171875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 47.2822265625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 2.873046875, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 134.94921875, + "entries": 80649.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 133.03125, + "entries": 80649.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 153.6875, + "entries": 80649.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 47.9306640625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 45.1669921875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 47.85546875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 47.6328125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 5.3671875, + "entries": 14113, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 9.3017578125, + "entries": 14113, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 6.6064453125, + "entries": 14113, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 4.119140625, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 24.2890625, + "entries": 8458.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 23.3125, + "entries": 8458.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 8.42578125, + "entries": 8458.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 1.9677734375, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 6.70703125, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 6.8359375, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 8.12109375, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 7.34765625, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 6.13671875, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 6.1328125, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 8.06640625, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 7.1796875, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 5.01171875, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 7.12109375, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 6.99609375, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 6.77734375, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 6.5625, + "entries": 2378.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 3.552734375, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 26.35546875, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 36.46875, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 40.015625, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 38.23828125, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 30.98046875, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 31.23828125, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 19.83203125, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 14.23828125, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 16.91015625, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 37.984375, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 16.26171875, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 52.8203125, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 32.55078125, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 26.5234375, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 22.0546875, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 35.5234375, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 26.6953125, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 21.1171875, + "entries": 12868.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 11.27734375, + "entries": 12868.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 11.3984375, + "entries": 12868.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 12.3984375, + "entries": 12868.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 8.3125, + "entries": 12868.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 9.18359375, + "entries": 12868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 8.625, + "entries": 12868.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 13.17578125, + "entries": 12868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 11.7421875, + "entries": 12868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 9.44921875, + "entries": 12868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 26.9775390625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 25.220703125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 23.5654296875, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 6.822265625, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 95.609375, + "entries": 45425.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 79.2578125, + "entries": 45425.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 78.375, + "entries": 45425.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 55.453125, + "entries": 45425.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 12.5703125, + "entries": 45425.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 64.7421875, + "entries": 45425.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 20.890625, + "entries": 45425.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 19.40234375, + "entries": 45425.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 21.6953125, + "entries": 45425.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 27.85546875, + "entries": 45425.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 0.607421875, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 78.85546875, + "entries": 42334.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 20.1943359375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 17.740234375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 15.712890625, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 38.787109375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 16.7802734375, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 21.423828125, + "entries": 14113, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 9.3232421875, + "entries": 14113, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 9.1943359375, + "entries": 14113, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 4.2060546875, + "entries": 14113, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 21.2421875, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 20.80078125, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 21.58984375, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 21.2265625, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 13.9375, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 9.55859375, + "entries": 7905.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3.71875, + "entries": 2923.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 17.49609375, + "entries": 53961.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 9.703125, + "entries": 17976.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 3.91796875, + "entries": 3461.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 7.59375, + "entries": 12868.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 19.00390625, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 25.14453125, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 20.59375, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 15.765625, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 24.97265625, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 21.28515625, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 22.80078125, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 22.8125, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 25.65234375, + "entries": 7905.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 7.8046875, + "entries": 7905.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0849609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8486328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8291015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9658203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9228515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8798828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9619140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8330078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9150390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5849609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5654296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5419921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5263671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5224609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5146484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5029296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5771484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.451171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.298828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.220703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3876953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5771484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.39453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.15625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.404296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.6416015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.513671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8681640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.099609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.107421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5419921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.041015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.943359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.689453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.857421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.947265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.474609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.193359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0517578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9931640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9501953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9111328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8798828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.509765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.509765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.509765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.572265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.494140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.384765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.318359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.255859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.193359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.119140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.509765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.509765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.509765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.509765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5166015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.7197265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6806640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6103515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5830078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4853515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4150390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0771484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0654296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0615234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.169921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.685546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.6796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.763671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.86328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.6865234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.0341796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.142578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.6826171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.7861328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.5556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.255859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.7861328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.5322265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.666015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.0703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.240234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.076171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5068359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.25390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.6337890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9033203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.7958984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5458984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4443359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0673828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8486328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.8916015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.0986328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.6083984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1416015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9736328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8212890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5283203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5322265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5439453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3173828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2822265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2587890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2314453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2197265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2041015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1611328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.212890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.18359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.208984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.17578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.197265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.16796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.197265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.169921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.166015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.6318359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6240234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.5107421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4130859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3505859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2763671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.1630859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.53515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.85546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.7724609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.0673828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.8466796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2548828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.9521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.6220703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.1357421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.0205078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.3466796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.529296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.4970703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 2.6552734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.697265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.896484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5380859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.4541015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2626953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.7333984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.6708984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.3955078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2978515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 1.2197265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.943359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.9580078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.8291015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5263671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5771484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.548828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5576171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.8583984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 1.19921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.7880859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5888671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.6005859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.7626953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.6005859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5576171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.548828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.59765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5771484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.5888671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 0.8466796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.56640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.8759765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 1.216796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.8056640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.642578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5927734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.6181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.7802734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.6181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.603515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.56640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.615234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.5947265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 0.8642578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6337890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6142578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.728515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7353515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7197265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.693359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6787109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7138671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7607421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.587890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.587890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.748046875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.783203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.619140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6845703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5947265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.56640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5986328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.66015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.65625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6494140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.64453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6376953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.611328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.037109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6142578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.59765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6357421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7275390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.615234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5927734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5517578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5576171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5986328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.54296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.630859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.630859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.626953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.591796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5888671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.591796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5673828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.587890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5673828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.587890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6650390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6376953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5986328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5166015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5166015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5166015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5205078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5126953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.64453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.66796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.70703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7353515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.271484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.0595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.169921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.25, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3935546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8154296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.44921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8154296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8076171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.79296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5927734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3154296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.107421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8115234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.5771484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.69921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.7294921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.7890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.7763671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5947265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.6689453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.783203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.7822265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.806640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.7861328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.755859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.00390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.84765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.591796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.85546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7724609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7255859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5458984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5458984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.71484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.70703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5771484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.708984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6259765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.630859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.56640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6767578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5869140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.669921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3623046875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3798828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.84765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.46875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.3740234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.392578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2412109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.958984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.720703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.685546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.4091796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.71875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7763671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7705078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.791015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.77734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 2.2568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.998046875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.91015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7841796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7490234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.732421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.708984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6201171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.603515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6826171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.845703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.009765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.2607421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6748046875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.638671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.638671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.619140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.642578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.634765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5654296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5654296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5341796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5419921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5498046875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5576171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6005859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5654296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.525390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.529296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.564453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.552734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5400390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5439453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5400390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5439453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5576171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6494140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.607421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5517578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.58984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.58203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5634765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.56640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5224609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5224609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5341796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5341796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5458984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5263671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6123046875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.564453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6103515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6220703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6220703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6337890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6259765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.556640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6220703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.638671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6806640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6572265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.73828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7392578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6416015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6650390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6142578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.548828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.662109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.599609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6865234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6162109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.767578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.71484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.748046875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5986328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6025390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6494140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6572265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6220703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6103515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6103515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6220703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6103515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.61328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.67578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6044921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.607421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.603515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.603515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.55078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.62109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6943359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7099609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6298828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.677734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.650390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5947265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.76171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7158203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6357421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.71875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8154296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7705078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6943359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.75390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7900390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7939453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7822265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.583984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5771484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.60546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8388671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8193359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6201171875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6025390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.603515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.697265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.59765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.59765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.580078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.580078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.580078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.63671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.62109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5439453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.64453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7060546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7060546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6650390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.572265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5263671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6162109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7724609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7490234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7373046875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7177734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6103515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6240234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.591796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.591796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5947265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.638671875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6044921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.603515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6064453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.62109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6240234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.9423828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.8603515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.994140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.908203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7333984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7802734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6298828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6083984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6650390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6416015625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.59765625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5595703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5947265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5830078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5673828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7783203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7578125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7236328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.783203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.869140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.212890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.923828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6845703125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5810546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.60546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5107421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.705078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5869140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.58984375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6298828125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7099609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6650390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.564453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5869140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5830078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 1.689453125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.7265625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.591796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.580078125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.55859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5341796875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5224609375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.533203125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.544921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5419921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5419921875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5302734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5537109375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5185546875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5478515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.603515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.6181640625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.568359375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5859375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.57421875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5244140625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5400390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5361328125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5234375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.529296875, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.521484375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5751953125, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5712890625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.515625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.52734375, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 0.5390625, + "entries": 14113, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.5771484375, + "entries": 14113, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.6201171875, + "entries": 14113, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 37.6923828125, + "entries": 14113, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 93.2841796875, + "entries": 847.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 75.4140625, + "entries": 14113, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 74.8115234375, + "entries": 14113, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 546.0126953125, + "entries": 61076.00000000001, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 81.6083984375, + "entries": 14113, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 82.5966796875, + "entries": 14113, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 430.7978515625, + "entries": 2923.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 315.0380859375, + "entries": 1744.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 18.921875, + "entries": 470.00000000000006, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 303.5400390625, + "entries": 11429.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 2525.357421875, + "entries": 53961.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 261.5107421875, + "entries": 14113, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 354.05859375, + "entries": 4519.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 269.9169921875, + "entries": 14113, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 115.8369140625, + "entries": 2639.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 1387.7744140625, + "entries": 17976.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 248.3935546875, + "entries": 3461.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 98.91015625, + "entries": 8458.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 422.0341796875, + "entries": 14113, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 74.6396484375, + "entries": 14113, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 77.51953125, + "entries": 14113, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 43.67578125, + "entries": 14113, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 44.91015625, + "entries": 14113, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 48.49609375, + "entries": 14113, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 48.8076171875, + "entries": 14113, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 47.2822265625, + "entries": 14113, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 424.541015625, + "entries": 80649.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 47.9306640625, + "entries": 14113, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 45.1669921875, + "entries": 14113, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 47.85546875, + "entries": 14113, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 47.6328125, + "entries": 14113, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 5.3671875, + "entries": 14113, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 9.3017578125, + "entries": 14113, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 6.6064453125, + "entries": 14113, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 90.9638671875, + "entries": 2378.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 632.517578125, + "entries": 12868.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 75.763671875, + "entries": 14113, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 482.673828125, + "entries": 45425.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 79.462890625, + "entries": 42334.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 149.15625, + "entries": 14113, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 318.3974609375, + "entries": 7905.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 271.2783203125, + "entries": 14113, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_DoubleTau70er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT55_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_ETT75_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet12", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet4", + "L1_SingleJet60", + "L1_SingleJet8", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 34.44140625, + "entries": 14113, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 0.5185546875, + "entries": 14113, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 0.5390625, + "entries": 14113, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 358.15625, + "entries": 14113, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu24_eta2p1", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu24_eta2p1", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 0.5390625, + "entries": 14113, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 1, + "allsize": 0.072265625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.072265625, + "entries": 1, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.072265625, + "entries": 1, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 4, + "allsize": 0.5546875, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.095703125, + "entries": 4, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 0.107421875, + "entries": 4, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.12109375, + "entries": 4, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.1162109375, + "entries": 4, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.1142578125, + "entries": 4, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.095703125, + "entries": 4, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 0.107421875, + "entries": 4, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.12109375, + "entries": 4, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.1162109375, + "entries": 4, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.1142578125, + "entries": 4, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30564/SinglePhoton_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30564/SinglePhoton_doc.html new file mode 100644 index 000000000..9d1fbd3c3 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30564/SinglePhoton_doc.html @@ -0,0 +1,1650 @@ + + + + Documentation for 278F7771-FAEE-0940-BCA9-32B04AD36773.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part0Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part2Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part3Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part4Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part5Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part6Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_part7Bool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet4Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30564/SinglePhoton_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30564/SinglePhoton_doc.json new file mode 100644 index 000000000..87bb814b5 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30564/SinglePhoton_doc.json @@ -0,0 +1,14054 @@ +{ + "filename": "278F7771-FAEE-0940-BCA9-32B04AD36773.root", + "filesize": 2280317.86328125, + "trees": { + "Events": { + "entries": 2068190, + "allsize": 2274474.03515625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 67.337890625, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 78.935546875, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 5605.927734375, + "entries": 2068190, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 303.681640625, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 839.798828125, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 996.58984375, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 875.068359375, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 876.341796875, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 828.421875, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 777.083984375, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 759.255859375, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 996.9765625, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 621.697265625, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 1175.630859375, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 881.072265625, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 867.474609375, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 869.337890625, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 841.267578125, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 929.5546875, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 887.97265625, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 1131.2578125, + "entries": 209877.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 492.634765625, + "entries": 209877.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 545.21484375, + "entries": 209877.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 432.755859375, + "entries": 209877.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 574.453125, + "entries": 209877.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 525.109375, + "entries": 209877.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 430.193359375, + "entries": 209877.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 547.626953125, + "entries": 209877.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 542.673828125, + "entries": 209877.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 541.294921875, + "entries": 209877.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 3936.412109375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3689.9609375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3389.673828125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 3950.2734375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3704.048828125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3347.51171875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1114.685546875, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 9534.89453125, + "entries": 10883440.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 25049.92578125, + "entries": 10883440.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 16213.1064453125, + "entries": 10883440.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 25271.4453125, + "entries": 10883440.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 17573.3125, + "entries": 10883440.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 4715.626953125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 7229.58203125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 4757.541015625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 7228.17578125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 660.525390625, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 4098.7890625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 4094.04296875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1212.47265625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1212.265625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 4719.900390625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 3171.44140625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 3101.556640625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2867.6171875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 2875.5859375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 4964.8046875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 3384.052734375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 5015.029296875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 3406.95703125, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 4960.83984375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 4795.72265625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 3674.61328125, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 5287.71875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 3770.046875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 4740.119140625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 4001.099609375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 4115.11328125, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 4858.501953125, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 6839.740234375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 6356.412109375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 5481.353515625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 5645.537109375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 7224.013671875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 6932.154296875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 5263.08984375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 7361.388671875, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 4006.986328125, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 4100.427734375, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 4167.8203125, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 4588.09765625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 4103.837890625, + "entries": 1735555.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1528.208984375, + "entries": 1735555.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1523.337890625, + "entries": 1735555.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1903.962890625, + "entries": 1735555.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1530.6875, + "entries": 1735555.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1743.734375, + "entries": 1735555.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1633.48046875, + "entries": 1735555.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 4020.99609375, + "entries": 1735555.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 3408.61328125, + "entries": 1735555.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 1164.650390625, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 1180.47265625, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1349.611328125, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1920.810546875, + "entries": 1735555.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1373.486328125, + "entries": 1735555.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 1172.80078125, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 1192.26953125, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 1248.931640625, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 1182.1171875, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 1206.94921875, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1280.529296875, + "entries": 1735555.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1200.712890625, + "entries": 1735555.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 624.177734375, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 2690.033203125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 4958.328125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 5580.25, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 5024.07421875, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 5424.953125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 5043.3828125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 4995.1640625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 5076.912109375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 5543.724609375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 5486.056640625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 4886.255859375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 5541.0078125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 5250.30078125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 5526.181640625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 4867.716796875, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 5521.35546875, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 5151.890625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 5472.7421875, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 4582.4453125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 4863.80859375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 5659.435546875, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 5485.814453125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 5485.931640625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 6239.26953125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 5000.853515625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 5239.76953125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 4180.693359375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 3071.478515625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 4889.484375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 5529.23046875, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 5302.265625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 5328.515625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 5716.646484375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 5539.068359375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 5494.951171875, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 4543.609375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 5686.986328125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 5466.978515625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 5476.345703125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 5156.517578125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 6196.72265625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 4743.365234375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 3311.46875, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 5118.134765625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 5092.521484375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 5073.744140625, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 5061.849609375, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 3827.283203125, + "entries": 2145233.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1465.96875, + "entries": 2145233.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1794.724609375, + "entries": 2145233.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1805.556640625, + "entries": 2145233.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 1716.169921875, + "entries": 2145233.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 1532.353515625, + "entries": 2145233.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 2706.71484375, + "entries": 2145233.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 149.984375, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 337.291015625, + "entries": 33426.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 308.150390625, + "entries": 33426.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 307.701171875, + "entries": 33426.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 289.94921875, + "entries": 33426.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 329.28125, + "entries": 33426.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 214.533203125, + "entries": 33426.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 771.919921875, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 6902.15234375, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 6809.7890625, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 7287.3359375, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 5505.4765625, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4437.08984375, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 7322.1875, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 6010.42578125, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5008.6171875, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3112.91796875, + "entries": 2676608.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 1732.18359375, + "entries": 2676608.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 1758.40234375, + "entries": 2676608.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 1769.515625, + "entries": 2676608.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1513.1640625, + "entries": 2676608.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1131.869140625, + "entries": 2676608.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1377.18359375, + "entries": 2676608.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1112.90625, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 9561.111328125, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 18509.130859375, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 17548.330078125, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 15960.837890625, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 16498.849609375, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 23602.060546875, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 19213.490234375, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 21846.646484375, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 20414.05859375, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 4244.15234375, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 15091.75, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 14539.478515625, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 28398.853515625, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 4596.626953125, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 4598.349609375, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 22268.853515625, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 3380.033203125, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 18043.041015625, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 16513.79296875, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 15818.919921875, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 27902.013671875, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 22200.73046875, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 21098.2138671875, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 17524.7451171875, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 17491.259765625, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 17690.73046875, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 14964.689453125, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 17599.94140625, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 14881.837890625, + "entries": 12234828.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3607.125, + "entries": 12234828.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2255.953125, + "entries": 12234828.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2223.923828125, + "entries": 12234828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2778.376953125, + "entries": 12234828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3303.470703125, + "entries": 12234828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 2830.8046875, + "entries": 12234828.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2275.99609375, + "entries": 12234828.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3464.34765625, + "entries": 12234828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 2819.90625, + "entries": 12234828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 4939.580078125, + "entries": 12234828.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 9423.072265625, + "entries": 12234828.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1932.3828125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1841.865234375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1869.12109375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1887.021484375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 516.9921875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 232.474609375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 536.033203125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 514.416015625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 521.615234375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 2166.982421875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2195.22265625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 578.0390625, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 5204.69921875, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1640.427734375, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3563.046875, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3584.787109375, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2569.65625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3672.453125, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2520.732421875, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3530.541015625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 4942.95703125, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2741.462890625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 3835.009765625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2505.794921875, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 3586.015625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4423.59765625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3825.39453125, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 3810.912109375, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 5194.01171875, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 4656.2890625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 3396.55078125, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2991.390625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2819.037109375, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 4727.78515625, + "entries": 1172532.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1236.8828125, + "entries": 1172532.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1172.828125, + "entries": 1172532.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1236.435546875, + "entries": 1172532.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 1025.93359375, + "entries": 1172532.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1185.30078125, + "entries": 1172532.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4089.87109375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4090.66796875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2816.142578125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3525.126953125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2814.724609375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 4757.537109375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 7193.0625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 3937.40625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3349.388671875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3280.0546875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 354.033203125, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1532.8671875, + "entries": 399659.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1629.748046875, + "entries": 399659.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1630.990234375, + "entries": 399659.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 606.572265625, + "entries": 399659.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 606.53125, + "entries": 399659.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1402.197265625, + "entries": 399659.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 603.9453125, + "entries": 399659.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 502.767578125, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 2584.890625, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 1766.529296875, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 2593.78515625, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 2614.919921875, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 1810.76953125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 2694.54296875, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 2483.318359375, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 1863.783203125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2091.578125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 912.302734375, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3364.521484375, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3083.974609375, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 3448.783203125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 3277.611328125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 3523.189453125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 2666.25, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 3542.533203125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 1906.38671875, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 2407.34765625, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 2431.3828125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 1300.32421875, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 1836.388671875, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 879.537109375, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 1918.658203125, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 2085.962890625, + "entries": 796542.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 914.771484375, + "entries": 796542.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1109.009765625, + "entries": 796542.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1058.60546875, + "entries": 796542.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1227.345703125, + "entries": 796542.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 915.7421875, + "entries": 796542.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 812.7890625, + "entries": 796542.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 815.970703125, + "entries": 796542.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 841.029296875, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 807.275390625, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 768.693359375, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 847.853515625, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 843.060546875, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 853.486328125, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 834.55859375, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1116.330078125, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 841.9609375, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 825.009765625, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 798.337890625, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 890.984375, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 801.564453125, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 711.80078125, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 705.654296875, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 872.0390625, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 838.837890625, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 848.244140625, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 795.1328125, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 799.83984375, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 843.546875, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 852.732421875, + "entries": 796542.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 646.173828125, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 6311.25390625, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 6311.37109375, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1554.234375, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1550.97265625, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 4201.03125, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 5831.94140625, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 8852.76171875, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 5847.1875, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 5225.884765625, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 6243.85546875, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 6320.763671875, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 12134.677734375, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 10845.904296875, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 8781.9453125, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 12581.423828125, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 6333.775390625, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 6676.43359375, + "entries": 3149637.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1548.958984375, + "entries": 3149637.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 2203.669921875, + "entries": 3149637.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 2195.015625, + "entries": 3149637.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 2229.22265625, + "entries": 3149637.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2555.298828125, + "entries": 3149637.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1548.96484375, + "entries": 3149637.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 4362.10546875, + "entries": 3149637.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1682.646484375, + "entries": 3149637.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1681.7890625, + "entries": 3149637.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1651.07421875, + "entries": 3149637.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1642.376953125, + "entries": 3149637.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1661.130859375, + "entries": 3149637.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1706.3359375, + "entries": 3149637.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1467.857421875, + "entries": 3149637.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 552.25, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 3611.951171875, + "entries": 1268366.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 4032.634765625, + "entries": 1268366.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 930.3544921875, + "entries": 1268366.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 931.59375, + "entries": 1268366.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1134.1552734375, + "entries": 1268366.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1165.169921875, + "entries": 1268366.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 1219.328125, + "entries": 1268366.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 931.5595703125, + "entries": 1268366.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 4747.24609375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 3932.873046875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 3932.228515625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 3933.201171875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 3932.595703125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 3933.767578125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 3937.451171875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 7216.416015625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3732.296875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3731.65234375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3734.35546875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3730.10546875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3731.359375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3733.89453125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3679.5703125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 3942.5390625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3701.814453125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3335.24609375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 3931.044921875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3736.03125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3682.552734375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 6517.98828125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 6666.23828125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 6890.39453125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 6821.564453125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 6697.958984375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 242.890625, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 20167.84375, + "entries": 12006812.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 19823.28125, + "entries": 12006812.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 23403.953125, + "entries": 12006812.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 7179.974609375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 6772.326171875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 7206.5390625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 7181.55078125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 945.65234375, + "entries": 2068190, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1343.025390625, + "entries": 2068190, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1058.814453125, + "entries": 2068190, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 552.89453125, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 3595.1162109375, + "entries": 1268366.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 3480.7021484375, + "entries": 1268366.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 1219.205078125, + "entries": 1268366.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 739.841796875, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 6178.169921875, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 6246.603515625, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 9024.4921875, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 7888.41796875, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 5675.6279296875, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 5528.431640625, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 8938.17578125, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 7390.048828125, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 4641.3701171875, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 7105.6962890625, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 6561.767578125, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 6103.384765625, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 5745.8076171875, + "entries": 3474586.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 437.2109375, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 1724.9375, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 2012.662109375, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 2191.8046875, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 2119.759765625, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1781.98046875, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1787.12109375, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1728.380859375, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 1603.57421875, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1437.00390625, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 2112.177734375, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1312.4453125, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 2713.86328125, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 1808.5, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 1741.423828125, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 1810.029296875, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 1387.2265625, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1767.4140625, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1616.7578125, + "entries": 571085.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 836.30078125, + "entries": 571085.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 973.943359375, + "entries": 571085.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 985.95703125, + "entries": 571085.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 705.384765625, + "entries": 571085.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 703.4375, + "entries": 571085.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 781.275390625, + "entries": 571085.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 1016.87109375, + "entries": 571085.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 996.4765625, + "entries": 571085.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 796.396484375, + "entries": 571085.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 3926.380859375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3816.08203125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3590.904296875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1226.90234375, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 23808.1708984375, + "entries": 12123662.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 22109.35546875, + "entries": 12123662.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 21695.23046875, + "entries": 12123662.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 13738.5166015625, + "entries": 12123662.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 1851.09375, + "entries": 12123662.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 17844.1884765625, + "entries": 12123662.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 3990.8359375, + "entries": 12123662.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 3640.7646484375, + "entries": 12123662.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 1930.056640625, + "entries": 12123662.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 5747.16015625, + "entries": 12123662.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 78.94921875, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 11402.91796875, + "entries": 6093752.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2795.103515625, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2433.80078125, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2130.62109375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 5566.23046875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2313.341796875, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3312.359375, + "entries": 2068190, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1364.919921875, + "entries": 2068190, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1335.400390625, + "entries": 2068190, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 733.400390625, + "entries": 2068190, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 5043.79296875, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 4818.63671875, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 5021.9609375, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 4826.2109375, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 3073.51953125, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 2027.72265625, + "entries": 2007264.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1065.3828125, + "entries": 1735555.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2816.197265625, + "entries": 12234828.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 827.296875, + "entries": 796542.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1226.34375, + "entries": 3149637.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 677.818359375, + "entries": 571085.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 4411.71875, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 5886.16796875, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 4813.56640625, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 3607.8125, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 5860.90625, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 4972.5546875, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 5401.4765625, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 5363.99609375, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 6103.7890625, + "entries": 2007264.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1608.76953125, + "entries": 2007264.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.224609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.513671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.76953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.869140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.580078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.2578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.513671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.091796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.76953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.4140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 365.818359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.701171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.365234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.123046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.009765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.728515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 238.958984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 380.767578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 366.412109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 376.646484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 253.416015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 384.865234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 385.126953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 385.248046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 385.392578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 385.408203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 385.638671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.025390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.08984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 381.79296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 383.84765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 384.3203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.212890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.611328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.119140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.005859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.775390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.025390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.56640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.4609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.47265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.03515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.62109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.119140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.94140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.498046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.19921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.880859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.66015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.896484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.9453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.4921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 80.1328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 384.42578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 383.046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.15625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 384.69921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 335.431640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 328.580078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 321.509765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 313.951171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 306.150390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.61328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.09375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.61328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.1171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.1015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 235.34375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 241.1171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 288.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 283.25390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 302.046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 341.64453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.61328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.447265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.61328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.869140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.61328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.61328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.869140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.166015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.673828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.673828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.435546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.037109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.685546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 279.880859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 379.181640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 376.869140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 318.298828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 391.509765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 391.857421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 246.95703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 75.98828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.86328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.03515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.802734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.802734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 76.927734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.603515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.298828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.255859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.224609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.1953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.677734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 120.634765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.99609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.02734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 116.6328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.2421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 110.927734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 108.40234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.0546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.224609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 69.251953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.224609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 86.474609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 125.130859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 172.052734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 209.623046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 171.328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 208.67578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.044921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 146.283203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 169.845703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.107421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.294921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.615234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 277.638671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 243.486328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.8828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.314453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.447265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.064453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 87.177734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 261.474609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.892578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.927734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.564453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 201.173828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 220.302734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.291015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.314453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 289.931640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.0078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.78515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.5703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.82421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 71.9296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.0078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 91.85546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 194.49609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.98828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.0390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 166.328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 238.26953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.6640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 287.703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 222.734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 292.0, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.51171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 297.578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 246.40234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 106.451171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 130.728515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 284.330078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.5546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 310.345703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 380.998046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 382.017578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.5625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 382.958984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 67.984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.802734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.6796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.138671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.533203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.0859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.224609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.224609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.638671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.630859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.314453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 94.392578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 99.947265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 97.189453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 115.521484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.005859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 111.287109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.888671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 107.212890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.98046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.654296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.115234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.87109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.2109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.8359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.939453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 64.169921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 65.990234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 284.646484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 382.205078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 85.98046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 197.767578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 256.197265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 275.517578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 365.349609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 353.751953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.25, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 72.779296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 68.228515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.291015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.029296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.802734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.38671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.330078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 131.037109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 197.7421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 139.873046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 133.96875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 118.146484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.783203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.466796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 162.279296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.951171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.939453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.8359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.76953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 61.9296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.810546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 64.212890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 74.75390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 62.8203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 63.53515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.15625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 68.28125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 66.025390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 67.408203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 130.712890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 59.580078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.3203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.263671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 132.970703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 199.67578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 141.806640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 135.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 120.080078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.73046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.716796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.400390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 164.212890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.884765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.873046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.76953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 65.703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 63.86328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.744140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.146484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 76.6875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 64.75390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 70.21484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.9921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 66.9921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 67.958984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 69.341796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 132.626953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.8359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 191.3828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 171.390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 185.974609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 177.099609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 238.95703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 218.060546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 208.095703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 253.140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 199.158203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.130859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.240234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.51953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.5703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 251.38671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.3046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 203.30859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.919921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.69921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.822265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.177734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.111328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.5, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.564453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.115234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.388671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.4375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.4453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.1171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.83984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.533203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.283203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.255859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.0703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.76953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.177734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.197265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.31640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.330078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.4921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.455078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.904296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.544921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.861328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.8125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.962890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.12890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.1015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.91796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.84375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.87109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.064453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 164.15625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.505859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 169.943359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.26953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 164.046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 169.775390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 163.87109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 169.357421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 163.515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 129.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 214.091796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.208984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.541015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.978515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.580078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.994140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.455078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.1796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.1640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.52734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 152.26953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 215.3046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 308.431640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.26171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.591796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.65234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.56640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.470703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.626953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.51953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.908203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.57421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.822265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.48828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.580078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.349609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.73828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.529296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.134765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.93359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.783203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.576171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.224609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.677734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.3046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.162109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.943359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.513671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.4921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.2109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.30859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.126953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.6328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.37109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.4140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.69140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.86328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.849609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.455078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.369140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.939453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 167.98046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.11328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.072265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.904296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.458984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.41796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.21484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.908203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.732421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.41015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.220703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.13671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.517578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.00390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.86328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.943359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.42578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.458984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.77734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.3046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.76953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.248046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.029296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.662109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.87109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.47265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.037109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.30859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.6640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.318359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.361328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.0859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.96875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.791015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.1171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.986328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.11328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.3203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.419921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.705078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.91796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.48828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 147.5703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.5703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.59765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 154.125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.091796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.091796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.736328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.736328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.9921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.9921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.5546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.60546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.73046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.775390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.048828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.283203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.322265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.904296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 241.517578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 210.169921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.619140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.673828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.884765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.41015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.93359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.71484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.8203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.5078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 230.69140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 199.7734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.1953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.44921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.40234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.865234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.353515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.162109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.935546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.595703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.044921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.3125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.19921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.685546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.041015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.517578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.162109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.904296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.26171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.212890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.74609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.1328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 188.97265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 183.166015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.6328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.80078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.794921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.197265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.240234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.822265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.580078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.501953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.044921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.501953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.591796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 219.587890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.14453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.927734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.275390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.822265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.255859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.455078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.76953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.8515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.33203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.400390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.8046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.591796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.51953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 117.193359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.435546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.6640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.177734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.525390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.083984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.357421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.263671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.267578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.1484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.23046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.1875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.107421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.162109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.99609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 100.8046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.8046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.75, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.326171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.291015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.486328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.603515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 150.7421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.849609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.568359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 276.09375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 185.765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.80859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 148.458984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 127.490234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.548828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 196.345703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.337890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 171.896484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 171.990234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 150.880859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 155.140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.537109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.947265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.4140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.6328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.03515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.2421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.9296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.767578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.939453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.306640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.11328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.876953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.07421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.662109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.181640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.34765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.322265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.345703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.412109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.615234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.447265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.91796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.376953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.736328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 85.083984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.43359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.103515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.158203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.48828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.560546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.427734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.611328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.021484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.01953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.47265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.98828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.49609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.61328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.92578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 181.0078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 172.01171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 128.39453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.60546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 116.25390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.62109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.71875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.615234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 339.287109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 347.9296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 154.544921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 174.462890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 196.876953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 153.021484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 161.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 162.107421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 165.57421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 171.25, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.28515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.220703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.083984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.771484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.02734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.908203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.89453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.4375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.400390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.576171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.634765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.1015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.853515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.154296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.611328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 93.068359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.720703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.751953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.154296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.068359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.568359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.94140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.25, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.4921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.498046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.03125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.189453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.962890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.5390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.544921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.40234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.416015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.013671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.552734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 137.76171875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.94140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 140.6640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.181640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.794921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.697265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.693359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.814453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.193359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.630859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.982421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 150.728515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 149.455078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.349609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.45703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.369140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.29296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.69140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.8515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.666015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.771484375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.76953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.74609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.310546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.8046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.908203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.958984375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.79296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.7890625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 224.982421875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.724609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.474609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.40625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.5078125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 248.302734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 229.599609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 158.599609375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.50390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.23046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 320.91796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.380859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.369140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.69140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.90625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.9921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.900390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.611328125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.572265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.650390625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.537109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.873046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.2578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.90234375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.19140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.513671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.869140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.48046875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.158203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.158203125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.802734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.869140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.869140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.447265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.595703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.5546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.802734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.9296875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.537109375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.05859375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.9921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.763671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.068359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.345703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.193359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.45703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.5703125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.98828125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.515625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.77734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.67578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.5546875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.884765625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.447265625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.89453125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.6015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.63671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.66015625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.8359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12": { + "name": "L1_SingleJet12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.3125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet4": { + "name": "L1_SingleJet4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.052734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8": { + "name": "L1_SingleJet8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 49.052734375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part0": { + "name": "HLT_ZeroBias_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.68359375, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part1": { + "name": "HLT_ZeroBias_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.69140625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part2": { + "name": "HLT_ZeroBias_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.67578125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part3": { + "name": "HLT_ZeroBias_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.671875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part4": { + "name": "HLT_ZeroBias_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.69921875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part5": { + "name": "HLT_ZeroBias_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6796875, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part6": { + "name": "HLT_ZeroBias_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6953125, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_part7": { + "name": "HLT_ZeroBias_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 47.6640625, + "entries": 2068190, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 67.337890625, + "entries": 2068190, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 78.935546875, + "entries": 2068190, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 5605.927734375, + "entries": 2068190, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 20090.44140625, + "entries": 209877.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11016.046875, + "entries": 2068190, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 11001.833984375, + "entries": 2068190, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 94757.3701171875, + "entries": 10883440.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 11945.208984375, + "entries": 2068190, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 11985.716796875, + "entries": 2068190, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 190891.421875, + "entries": 1735555.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 256051.185546875, + "entries": 2145233.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1936.890625, + "entries": 33426.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 62450.23046875, + "entries": 2676608.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 525854.189453125, + "entries": 12234828.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 14214.126953125, + "entries": 2068190, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 86177.97265625, + "entries": 1172532.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 39853.982421875, + "entries": 2068190, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 17214.802734375, + "entries": 399659.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_singleRP", + "nProton_multiRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 85611.54296875, + "entries": 796542.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 145614.3828125, + "entries": 3149637.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 14508.9970703125, + "entries": 1268366.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 61639.013671875, + "entries": 2068190, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 10979.599609375, + "entries": 2068190, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11349.62890625, + "entries": 2068190, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 6517.98828125, + "entries": 2068190, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6666.23828125, + "entries": 2068190, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 6890.39453125, + "entries": 2068190, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6821.564453125, + "entries": 2068190, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 6697.958984375, + "entries": 2068190, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 63637.96875, + "entries": 12006812.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 7179.974609375, + "entries": 2068190, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 6772.326171875, + "entries": 2068190, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 7206.5390625, + "entries": 2068190, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 7181.55078125, + "entries": 2068190, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 945.65234375, + "entries": 2068190, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1343.025390625, + "entries": 2068190, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1058.814453125, + "entries": 2068190, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 87767.8359375, + "entries": 3474586.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 41568.134765625, + "entries": 571085.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 11333.3671875, + "entries": 2068190, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 117582.275390625, + "entries": 12123662.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 11481.8671875, + "entries": 6093752.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 21251.77734375, + "entries": 2068190, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 73576.001953125, + "entries": 2007264.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 38210.841796875, + "entries": 2068190, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_DoubleTau70er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT55_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_ETT75_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent", + "L1_SingleJet12", + "L1_SingleJet4", + "L1_SingleJet8" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 4710.703125, + "entries": 2068190, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 59.580078125, + "entries": 2068190, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 61.8359375, + "entries": 2068190, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 46991.1953125, + "entries": 2068190, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu24_eta2p1", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu24_eta2p1", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB", + "HLT_ZeroBias_part0", + "HLT_ZeroBias_part1", + "HLT_ZeroBias_part2", + "HLT_ZeroBias_part3", + "HLT_ZeroBias_part4", + "HLT_ZeroBias_part5", + "HLT_ZeroBias_part6", + "HLT_ZeroBias_part7" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 61.8359375, + "entries": 2068190, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 11, + "allsize": 0.111328125, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.111328125, + "entries": 11, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.111328125, + "entries": 11, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 2756, + "allsize": 2.5322265625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.2255859375, + "entries": 2756, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.6279296875, + "entries": 2756, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2275390625, + "entries": 2756, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.2265625, + "entries": 2756, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.224609375, + "entries": 2756, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.2255859375, + "entries": 2756, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.6279296875, + "entries": 2756, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2275390625, + "entries": 2756, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.2265625, + "entries": 2756, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.224609375, + "entries": 2756, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30565/Tau_doc.html b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30565/Tau_doc.html new file mode 100644 index 000000000..c437e90d5 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30565/Tau_doc.html @@ -0,0 +1,1639 @@ + + + + Documentation for 03DD0FB3-219B-C54D-A476-EE8937CC214E.root + + + + +

LuminosityBlocks Content

+ + + + + + + +
CollectionDescription
betaStarLHC beta star
crossingAngleLHC crossing angle
energyLHC beam energy
luminosityBlockluminosityBlock/i
runrun/i
+ +

LuminosityBlocks detail

+

betaStar [back to top]

+ + + +
Object propertyTypeDescription
betaStarDouble_tLHC beta star
+

crossingAngle [back to top]

+ + + +
Object propertyTypeDescription
crossingAngleDouble_tLHC crossing angle
+

energy [back to top]

+ + + +
Object propertyTypeDescription
energyDouble_tLHC beam energy
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ +

Events Content

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CollectionDescription
CaloMETphi
ChsMETraw chs PF MET phi
CorrT1METJetAdditional low-pt jets for Type-1 MET re-correction
DeepMETResolutionTuneDeepmET ResolutionTune phi
DeepMETResponseTuneDeepMET ResponseTune phi
ElectronslimmedElectrons after basic selection (pt > 5 )
FatJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
FlagTrigger/flag bit (process: PAT)
FsrPhotonFinal state radiation photons emitted by muons
HLTTrigger/flag bit (process: HLT)
HLTriggerFinalPathTrigger/flag bit (process: HLT)
HLTriggerFirstPathTrigger/flag bit (process: HLT)
IsoTrackisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
JetslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
L1Trigger/flag bit (process: NANO)
L1PreFiringWeightL1 pre-firing event correction weight (1-probability), down var.
L1RecoTrigger/flag bit (process: RECO)
LowPtElectronslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
METDelta (METx_mod-METx) Unclustered Energy Up
MuonslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
OtherPVZ position of other primary vertices, excluding the main PV
PPSLocalTrackppsLocalTrack variables
PVmain primary vertex number of degree of freedom
PhotonslimmedPhotons after basic selection (pt > 5 )
ProtonMandelstam variable t
PuppiMETphi
RawMETphi
RawPuppiMETphi
SVdecay length in cm
SoftActivityJetjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
SoftActivityJetHTscalar sum of soft activity jet pt, pt>1
SoftActivityJetHT10scalar sum of soft activity jet pt , pt >10
SoftActivityJetHT2scalar sum of soft activity jet pt, pt >2
SoftActivityJetHT5scalar sum of soft activity jet pt, pt>5
SoftActivityJetNjets10number of soft activity jet pt, pt >2
SoftActivityJetNjets2number of soft activity jet pt, pt >10
SoftActivityJetNjets5number of soft activity jet pt, pt >5
SubJetslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
TauslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
TkMETraw track MET phi
TrigObjpt
boostedTauslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
eventevent/l
fixedGridRhoFastjetAllrho from all PF Candidates, used e.g. for JECs
fixedGridRhoFastjetCentralrho from all PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralCalorho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
fixedGridRhoFastjetCentralChargedPileUprho from charged PF Candidates for central region, used e.g. for JECs
fixedGridRhoFastjetCentralNeutralrho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
luminosityBlockluminosityBlock/i
runrun/i
+ +

Events detail

+

CaloMET [back to top]

+ + + + + +
Object propertyTypeDescription
CaloMET_phiFloat_tphi
CaloMET_ptFloat_tpt
CaloMET_sumEtFloat_tscalar sum of Et
+

ChsMET [back to top]

+ + + + + +
Object propertyTypeDescription
ChsMET_phiFloat_traw chs PF MET phi
ChsMET_ptFloat_traw chs PF MET pt
ChsMET_sumEtFloat_traw chs PF scalar sum of Et
+

CorrT1METJet [back to top]

+ + + + + + + + +
Object propertyTypeDescription
CorrT1METJet_areaFloat_tjet catchment area, for JECs
CorrT1METJet_etaFloat_teta
CorrT1METJet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
CorrT1METJet_phiFloat_tphi
CorrT1METJet_rawPtFloat_tpt()*jecFactor('Uncorrected')
nCorrT1METJetUInt_tAdditional low-pt jets for Type-1 MET re-correction
+

DeepMETResolutionTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResolutionTune_phiFloat_tDeepmET ResolutionTune phi
DeepMETResolutionTune_ptFloat_tDeepMET ResolutionTune pt
+

DeepMETResponseTune [back to top]

+ + + + +
Object propertyTypeDescription
DeepMETResponseTune_phiFloat_tDeepMET ResponseTune phi
DeepMETResponseTune_ptFloat_tDeepMET ResponseTune pt
+

Electron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Electron_chargeInt_telectric charge
Electron_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Electron_convVetoBool_tpass conversion veto
Electron_cutBasedInt_tcut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)
Electron_cutBased_HEEPBool_tcut-based HEEP ID
Electron_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Electron_dEscaleUpFloat_tecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)
Electron_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Electron_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Electron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
Electron_dr03EcalRecHitSumEtFloat_tNon-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03HcalDepth1TowerSumEtFloat_tNon-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV
Electron_dr03TkSumPtHEEPFloat_tNon-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID
Electron_dxyFloat_tdxy (with sign) wrt first PV, in cm
Electron_dxyErrFloat_tdxy uncertainty, in cm
Electron_dzFloat_tdz (with sign) wrt first PV, in cm
Electron_dzErrFloat_tdz uncertainty, in cm
Electron_eCorrFloat_tratio of the calibrated energy/miniaod energy
Electron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
Electron_energyErrFloat_tenergy error of the cluster-track combination
Electron_etaFloat_teta
Electron_hoeFloat_tH over E
Electron_ip3dFloat_t3D impact parameter wrt first PV, in cm
Electron_isPFcandBool_telectron is PF candidate
Electron_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Electron_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Electron_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Electron_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Electron_lostHitsUChar_tnumber of missing inner hits
Electron_massFloat_tmass
Electron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Electron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Electron_mvaFall17V2IsoFloat_tMVA Iso ID V2 score
Electron_mvaFall17V2Iso_WP80Bool_tMVA Iso ID V2 WP80
Electron_mvaFall17V2Iso_WP90Bool_tMVA Iso ID V2 WP90
Electron_mvaFall17V2Iso_WPLBool_tMVA Iso ID V2 loose WP
Electron_mvaFall17V2noIsoFloat_tMVA noIso ID V2 score
Electron_mvaFall17V2noIso_WP80Bool_tMVA noIso ID V2 WP80
Electron_mvaFall17V2noIso_WP90Bool_tMVA noIso ID V2 WP90
Electron_mvaFall17V2noIso_WPLBool_tMVA noIso ID V2 loose WP
Electron_mvaTTHFloat_tTTH MVA lepton ID score
Electron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Electron_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Electron_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Electron_phiFloat_tphi
Electron_photonIdxInt_t(index to Photon)index of the associated photon (-1 if none)
Electron_ptFloat_tp_{T}
Electron_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Electron_scEtOverPtFloat_t(supercluster transverse energy)/pt-1
Electron_seedGainUChar_tGain of the seed crystal
Electron_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Electron_sip3dFloat_t3D impact parameter significance wrt first PV, in cm
Electron_tightChargeInt_tTight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)
Electron_vidNestedWPBitmapInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut
Electron_vidNestedWPBitmapHEEPInt_tVID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut
nElectronUInt_tslimmedElectrons after basic selection (pt > 5 )
+

FatJet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
FatJet_areaFloat_tjet catchment area, for JECs
FatJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
FatJet_btagDDBvLV2Float_tDeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD
FatJet_btagDDCvBV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb
FatJet_btagDDCvLV2Float_tDeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD
FatJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
FatJet_btagHbbFloat_tHiggs to BB tagger discriminator
FatJet_deepTagMD_H4qvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator
FatJet_deepTagMD_HbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator
FatJet_deepTagMD_TvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTagMD_WvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTagMD_ZHbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator
FatJet_deepTagMD_ZHccvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator
FatJet_deepTagMD_ZbbvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator
FatJet_deepTagMD_ZvsQCDFloat_tMass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator
FatJet_deepTagMD_bbvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator
FatJet_deepTagMD_ccvsLightFloat_tMass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator
FatJet_deepTag_HFloat_tDeepBoostedJet tagger H(bb,cc,4q) sum
FatJet_deepTag_QCDFloat_tDeepBoostedJet tagger QCD(bb,cc,b,c,others) sum
FatJet_deepTag_QCDothersFloat_tDeepBoostedJet tagger QCDothers value
FatJet_deepTag_TvsQCDFloat_tDeepBoostedJet tagger top vs QCD discriminator
FatJet_deepTag_WvsQCDFloat_tDeepBoostedJet tagger W vs QCD discriminator
FatJet_deepTag_ZvsQCDFloat_tDeepBoostedJet tagger Z vs QCD discriminator
FatJet_electronIdx3SJInt_t(index to Electron)index of electron matched to jet
FatJet_etaFloat_teta
FatJet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
FatJet_lsf3Float_tLepton Subjet Fraction (3 subjets)
FatJet_massFloat_tmass
FatJet_msoftdropFloat_tCorrected soft drop mass with PUPPI
FatJet_muonIdx3SJInt_t(index to Muon)index of muon matched to jet
FatJet_n2b1Float_tN2 with beta=1
FatJet_n3b1Float_tN3 with beta=1
FatJet_nConstituentsUChar_tNumber of particles in the jet
FatJet_particleNetMD_QCDFloat_tMass-decorrelated ParticleNet tagger raw QCD score
FatJet_particleNetMD_XbbFloat_tMass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)
FatJet_particleNetMD_XccFloat_tMass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)
FatJet_particleNetMD_XqqFloat_tMass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)
FatJet_particleNet_H4qvsQCDFloat_tParticleNet tagger H(->VV->qqqq) vs QCD discriminator
FatJet_particleNet_HbbvsQCDFloat_tParticleNet tagger H(->bb) vs QCD discriminator
FatJet_particleNet_HccvsQCDFloat_tParticleNet tagger H(->cc) vs QCD discriminator
FatJet_particleNet_QCDFloat_tParticleNet tagger QCD(bb,cc,b,c,others) sum
FatJet_particleNet_TvsQCDFloat_tParticleNet tagger top vs QCD discriminator
FatJet_particleNet_WvsQCDFloat_tParticleNet tagger W vs QCD discriminator
FatJet_particleNet_ZvsQCDFloat_tParticleNet tagger Z vs QCD discriminator
FatJet_particleNet_massFloat_tParticleNet mass regression
FatJet_phiFloat_tphi
FatJet_ptFloat_tpt
FatJet_rawFactorFloat_t1 - Factor to get back to raw pT
FatJet_subJetIdx1Int_t(index to Subjet)index of first subjet
FatJet_subJetIdx2Int_t(index to Subjet)index of second subjet
FatJet_tau1Float_tNsubjettiness (1 axis)
FatJet_tau2Float_tNsubjettiness (2 axis)
FatJet_tau3Float_tNsubjettiness (3 axis)
FatJet_tau4Float_tNsubjettiness (4 axis)
nFatJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Flag [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Flag_BadChargedCandidateFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadChargedCandidateSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadChargedCandidateSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonDzFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_BadPFMuonSummer16FilterBool_tTrigger/flag bit (process: PAT)
Flag_BadPFMuonSummer16Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHalo2015FilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHalo2015Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_CSCTightHaloTrkMuUnvetoFilterBool_tTrigger/flag bit (process: PAT)
Flag_CSCTightHaloTrkMuUnvetoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellBoundaryEnergyFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellBoundaryEnergyFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_EcalDeadCellTriggerPrimitiveFilterBool_tTrigger/flag bit (process: PAT)
Flag_EcalDeadCellTriggerPrimitiveFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HBHENoiseIsoFilterBool_tTrigger/flag bit (process: PAT)
Flag_HBHENoiseIsoFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_HcalStripHaloFilterBool_tTrigger/flag bit (process: PAT)
Flag_HcalStripHaloFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_METFiltersBool_tTrigger/flag bit (process: PAT)
Flag_METFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_chargedHadronTrackResolutionFilterBool_tTrigger/flag bit (process: PAT)
Flag_chargedHadronTrackResolutionFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalBadCalibFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalBadCalibFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_ecalLaserCorrFilterBool_tTrigger/flag bit (process: PAT)
Flag_ecalLaserCorrFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_eeBadScFilterBool_tTrigger/flag bit (process: PAT)
Flag_eeBadScFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalSuperTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalSuperTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_globalTightHalo2016FilterBool_tTrigger/flag bit (process: PAT)
Flag_globalTightHalo2016Filter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_goodVerticesBool_tTrigger/flag bit (process: PAT)
Flag_goodVertices_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hcalLaserEventFilterBool_tTrigger/flag bit (process: PAT)
Flag_hcalLaserEventFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_hfNoisyHitsFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilterBool_tTrigger/flag bit (process: PAT)
Flag_muonBadTrackFilter_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOGFiltersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOGFilters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_logErrorTooManyClustersBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_logErrorTooManyClusters_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_manystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_manystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
Flag_trkPOG_toomanystripclus53XBool_tTrigger/flag bit (process: PAT)
Flag_trkPOG_toomanystripclus53X_pRECOBool_tTrigger/flag bit (process: RECO)
+

FsrPhoton [back to top]

+ + + + + + + + + +
Object propertyTypeDescription
FsrPhoton_dROverEt2Float_tdeltaR to associated muon divided by photon et2
FsrPhoton_etaFloat_teta
FsrPhoton_muonIdxInt_t(index to Muon)index of associated muon
FsrPhoton_phiFloat_tphi
FsrPhoton_ptFloat_tpt
FsrPhoton_relIso03Float_trelative isolation in a 0.3 cone without CHS
nFsrPhotonUInt_tFinal state radiation photons emitted by muons
+

HLT [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
HLT_AK4CaloJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4CaloJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet100Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_AK4PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT650_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT700_TrimR0p1PT0p03Mass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT750_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFHT800_TrimMass50Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet360_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet400_TrimMass30Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_AK8PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_AK8Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet110_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet170_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet20_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet40_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_DiJet70_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_BTagMu_Jet300_Mu5Bool_tTrigger/flag bit (process: HLT)
HLT_CaloJet500_NoJetIDBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet330_CFMax0p5Bool_tTrigger/flag bit (process: HLT)
HLT_DiCentralPFJet430Bool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBFMu_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiJetVBF_PassThroughBool_tTrigger/flag bit (process: HLT)
HLT_DiMu9_Ele9_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_FBEta3_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve100_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve140Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve15_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve160_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve200Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve220_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve25_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve260Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve300_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve320Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve35_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve40Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve400Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve500Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve60_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80Bool_tTrigger/flag bit (process: HLT)
HLT_DiPFJetAve80_HFJECBool_tTrigger/flag bit (process: HLT)
HLT_DiSC30_18_EIso_AND_HE_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Jpsi_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Phi_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0_Upsilon_MuonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon0er16_Jpsi_NoOS_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_PsiPrimeBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon13_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon16_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon20_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon6_Jpsi_NoVertexingBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_PsiPrime_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Dimuon8_Upsilon_BarrelBool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90Bool_tTrigger/flag bit (process: HLT)
HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle24_22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle33_CaloIdL_MWBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleIsoMu17_eta2p1_noDzCutBool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJet90_Double30_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu0Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu18NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu23NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu28NoFiltersNoVtxDisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu33NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu38NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu3_Trk_Tau3muBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_BsBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_3_Jpsi_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_JpsiTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_LowMassNonResonantTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu4_PsiPrimeTrk_DisplacedBool_tTrigger/flag bit (process: HLT)
HLT_DoubleMu8_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_DoublePhoton85Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_ECALHT800Bool_tTrigger/flag bit (process: HLT)
HLT_EcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_Ele105_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Ele115_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele12_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele145_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele200_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28Bool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele250_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele25_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_HighEta_Ele20_Mass55Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPLoose_Gsf_WHbbBoostBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_WPTight_Gsf_L1JetTauSeededBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPLoose_Gsf_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_Ele27_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele300_CaloIdVT_GsfTrkIdTBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele30_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele32_eta2p1_WPTight_GsfBool_tTrigger/flag bit (process: HLT)
HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165Bool_tTrigger/flag bit (process: HLT)
HLT_Ele50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_Ele8_CaloIdM_TrackIdM_PFJet30Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity100Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity130Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity150Bool_tTrigger/flag bit (process: HLT)
HLT_FullTracks_Multiplicity80Bool_tTrigger/flag bit (process: HLT)
HLT_GlobalRunHPDNoiseBool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton10Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton15Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton20Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton40Bool_tTrigger/flag bit (process: HLT)
HLT_HISinglePhoton60Bool_tTrigger/flag bit (process: HLT)
HLT_HT200Bool_tTrigger/flag bit (process: HLT)
HLT_HT2000Bool_tTrigger/flag bit (process: HLT)
HLT_HT2500Bool_tTrigger/flag bit (process: HLT)
HLT_HT250_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT275Bool_tTrigger/flag bit (process: HLT)
HLT_HT325Bool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet40_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT350_DisplacedDijet80_Tight_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_HT425Bool_tTrigger/flag bit (process: HLT)
HLT_HT430to450Bool_tTrigger/flag bit (process: HLT)
HLT_HT450to470Bool_tTrigger/flag bit (process: HLT)
HLT_HT470to500Bool_tTrigger/flag bit (process: HLT)
HLT_HT500to550Bool_tTrigger/flag bit (process: HLT)
HLT_HT550_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT550to650Bool_tTrigger/flag bit (process: HLT)
HLT_HT575Bool_tTrigger/flag bit (process: HLT)
HLT_HT650Bool_tTrigger/flag bit (process: HLT)
HLT_HT650_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HT750_DisplacedDijet80_InclusiveBool_tTrigger/flag bit (process: HLT)
HLT_HcalCalibrationBool_tTrigger/flag bit (process: HLT)
HLT_HcalIsolatedbunchBool_tTrigger/flag bit (process: HLT)
HLT_HcalNZSBool_tTrigger/flag bit (process: HLT)
HLT_HcalPhiSymBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_RegBool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu22_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHBBool_tTrigger/flag bit (process: HLT)
HLT_IsoTrackHEBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_JetE30_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE50_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_JetE70_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxMinusBool_tTrigger/flag bit (process: HLT)
HLT_L1BptxPlusBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEventsBool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1FatEvents_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_ANDBool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part0Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part1Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part2Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part3Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part4Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part5Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part6Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part7Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part8Bool_tTrigger/flag bit (process: HLT)
HLT_L1MinimumBiasHF_OR_part9Bool_tTrigger/flag bit (process: HLT)
HLT_L1NotBptxORBool_tTrigger/flag bit (process: HLT)
HLT_L1SingleMu18Bool_tTrigger/flag bit (process: HLT)
HLT_L1_TripleJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu23_NoVertexBool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu10_NoVertex_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BXBool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120Bool_tTrigger/flag bit (process: HLT)
HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90Bool_tTrigger/flag bit (process: HLT)
HLT_MET200Bool_tTrigger/flag bit (process: HLT)
HLT_MET250Bool_tTrigger/flag bit (process: HLT)
HLT_MET300Bool_tTrigger/flag bit (process: HLT)
HLT_MET600Bool_tTrigger/flag bit (process: HLT)
HLT_MET60_IsoTrk35_LooseBool_tTrigger/flag bit (process: HLT)
HLT_MET700Bool_tTrigger/flag bit (process: HLT)
HLT_MET75_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MET90_IsoTrk50Bool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_Mu10_CentralPFJet30_BTagCSV_p13Bool_tTrigger/flag bit (process: HLT)
HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_Photon25_CaloIdL_L1ORBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT400_PFMET50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu15_IsoVVVL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Mu8_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon30_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_Photon35_CaloIdL_L1ISOBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TkMu8_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10Bool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSignBool_tTrigger/flag bit (process: HLT)
HLT_Mu20_Mu10_SameSign_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_Mu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu25_TkMu0_dEta18_OniaBool_tTrigger/flag bit (process: HLT)
HLT_Mu27Bool_tTrigger/flag bit (process: HLT)
HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu27_TkMu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_CentralCaloJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu28NoFiltersNoVtx_DisplacedJet40_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu30_eta2p1_PFJet150_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu350Bool_tTrigger/flag bit (process: HLT)
HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_TightBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_DisplacedJet60_LooseBool_tTrigger/flag bit (process: HLT)
HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu3_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_TkMu11Bool_tTrigger/flag bit (process: HLT)
HLT_Mu40_eta2p1_PFJet200_PFJet50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu45_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50Bool_tTrigger/flag bit (process: HLT)
HLT_Mu50_IsoVVVL_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_Mu55Bool_tTrigger/flag bit (process: HLT)
HLT_Mu6_PFHT200_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_L2Mu2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track2_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track3p5_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_Mu7p5_Track7_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_Mu8Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_DiEle12_CaloIdL_TrackIdLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60Bool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVLBool_tTrigger/flag bit (process: HLT)
HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_PFHT125Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT200_PFAlphaT0p51Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT300_PFMET110Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT400_SixJet30_DoubleBTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT450_SixJet40_BTagCSV_p056Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT475Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT550_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ900DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT650_WideJetMJJ950DEtaJJ1p5Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt70Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT750_4JetPt80Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT800_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT850_4JetPt50Bool_tTrigger/flag bit (process: HLT)
HLT_PFHT900Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet140Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet15_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet200Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet25_NoCaloMatchedBool_tTrigger/flag bit (process: HLT)
HLT_PFJet260Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet320Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet40Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet400Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet450Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet500Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet60Bool_tTrigger/flag bit (process: HLT)
HLT_PFJet80Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET110_PFMHT110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET120_PFMHT120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHECleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET170_NotCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFMET300Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET400Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET500Bool_tTrigger/flag bit (process: HLT)
HLT_PFMET600Bool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu110_PFMHTNoMu110_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETNoMu120_PFMHTNoMu120_IDTightBool_tTrigger/flag bit (process: HLT)
HLT_PFMETTypeOne190_HBHE_BeamHaloCleanedBool_tTrigger/flag bit (process: HLT)
HLT_PFTau120_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_PFTau140_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon120_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon135_PFMET100Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_HE10Bool_tTrigger/flag bit (process: HLT)
HLT_Photon165_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon175Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon22_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon250_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60Bool_tTrigger/flag bit (process: HLT)
HLT_Photon30Bool_tTrigger/flag bit (process: HLT)
HLT_Photon300_NoHEBool_tTrigger/flag bit (process: HLT)
HLT_Photon30_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon36Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon36_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50Bool_tTrigger/flag bit (process: HLT)
HLT_Photon500Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon50_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon75_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_Photon90Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_CaloIdL_PFHT600Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40Bool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBFBool_tTrigger/flag bit (process: HLT)
HLT_Photon90_R9Id90_HE10_IsoMBool_tTrigger/flag bit (process: HLT)
HLT_PhysicsBool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_DoubleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadJet45_TripleBTagCSV_p087Bool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_JpsiBool_tTrigger/flag bit (process: HLT)
HLT_QuadMuon0_Dimuon0_UpsilonBool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240Bool_tTrigger/flag bit (process: HLT)
HLT_QuadPFJet_VBFBool_tTrigger/flag bit (process: HLT)
HLT_RandomBool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p25Bool_tTrigger/flag bit (process: HLT)
HLT_Rsq0p30Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200Bool_tTrigger/flag bit (process: HLT)
HLT_RsqMR270_Rsq0p09_MR200_4jetBool_tTrigger/flag bit (process: HLT)
HLT_SingleCentralPFJet170_CFMax0p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVLBool_tTrigger/flag bit (process: HLT)
HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZBool_tTrigger/flag bit (process: HLT)
HLT_TkMu20Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu24_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu27Bool_tTrigger/flag bit (process: HLT)
HLT_TkMu50Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_12_10_5Bool_tTrigger/flag bit (process: HLT)
HLT_TripleMu_5_3_3_DZ_Mass3p8Bool_tTrigger/flag bit (process: HLT)
HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtxBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5Bool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_TightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrackBool_tTrigger/flag bit (process: HLT)
HLT_VBF_DisplacedJet40_VVTightID_HadronicBool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau120_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_VLooseIsoPFTau140_Trk50_eta2p1Bool_tTrigger/flag bit (process: HLT)
HLT_ZeroBiasBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstBXAfterTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGapBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionAfterAbortGap_copyBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_FirstCollisionInTrainBool_tTrigger/flag bit (process: HLT)
HLT_ZeroBias_IsolatedBunchesBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFinalPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFinalPathBool_tTrigger/flag bit (process: HLT)
+

HLTriggerFirstPath [back to top]

+ + + +
Object propertyTypeDescription
HLTriggerFirstPathBool_tTrigger/flag bit (process: HLT)
+

IsoTrack [back to top]

+ + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
IsoTrack_chargeInt_telectric charge
IsoTrack_dxyFloat_tdxy (with sign) wrt first PV, in cm
IsoTrack_dzFloat_tdz (with sign) wrt first PV, in cm
IsoTrack_etaFloat_teta
IsoTrack_fromPVInt_tisolated track comes from PV
IsoTrack_isFromLostTrackBool_tif isolated track comes from a lost track
IsoTrack_isHighPurityTrackBool_ttrack is high purity
IsoTrack_isPFcandBool_tif isolated track is a PF candidate
IsoTrack_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
IsoTrack_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
IsoTrack_pdgIdInt_tPDG id of PF cand
IsoTrack_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
IsoTrack_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
IsoTrack_phiFloat_tphi
IsoTrack_ptFloat_tpt
nIsoTrackUInt_tisolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto
+

Jet [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Jet_areaFloat_tjet catchment area, for JECs
Jet_bRegCorrFloat_tpt correction for b-jet energy regression
Jet_bRegResFloat_tres on pt corrected with b-jet regression
Jet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
Jet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
Jet_btagDeepCvBFloat_tDeepCSV c vs b+bb discriminator
Jet_btagDeepCvLFloat_tDeepCSV c vs udsg discriminator
Jet_btagDeepFlavBFloat_tDeepJet b+bb+lepb tag discriminator
Jet_btagDeepFlavCvBFloat_tDeepJet c vs b+bb+lepb discriminator
Jet_btagDeepFlavCvLFloat_tDeepJet c vs uds+g discriminator
Jet_btagDeepFlavQGFloat_tDeepJet g vs uds discriminator
Jet_cRegCorrFloat_tpt correction for c-jet energy regression
Jet_cRegResFloat_tres on pt corrected with c-jet regression
Jet_chEmEFFloat_tcharged Electromagnetic Energy Fraction
Jet_chFPV0EFFloat_tcharged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.
Jet_chHEFFloat_tcharged Hadron Energy Fraction
Jet_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Jet_electronIdx1Int_t(index to Electron)index of first matching electron
Jet_electronIdx2Int_t(index to Electron)index of second matching electron
Jet_etaFloat_teta
Jet_hfadjacentEtaStripsSizeInt_teta size of the strips next to the central tower strip in HF (noise discriminating variable)
Jet_hfcentralEtaStripSizeInt_teta size of the central tower strip in HF (noise discriminating variable)
Jet_hfsigmaEtaEtaFloat_tsigmaEtaEta for HF jets (noise discriminating variable)
Jet_hfsigmaPhiPhiFloat_tsigmaPhiPhi for HF jets (noise discriminating variable)
Jet_jetIdInt_tJet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto
Jet_massFloat_tmass
Jet_muEFFloat_tmuon Energy Fraction
Jet_muonIdx1Int_t(index to Muon)index of first matching muon
Jet_muonIdx2Int_t(index to Muon)index of second matching muon
Jet_muonSubtrFactorFloat_t1-(muon-subtracted raw pt)/(raw pt)
Jet_nConstituentsUChar_tNumber of particles in the jet
Jet_nElectronsInt_tnumber of electrons in the jet
Jet_nMuonsInt_tnumber of muons in the jet
Jet_neEmEFFloat_tneutral Electromagnetic Energy Fraction
Jet_neHEFFloat_tneutral Hadron Energy Fraction
Jet_phiFloat_tphi
Jet_ptFloat_tpt
Jet_puIdInt_tPileup ID flags with 106X (2016) training
Jet_puIdDiscFloat_tPileup ID discriminant with 106X (2016) training
Jet_qglFloat_tQuark vs Gluon likelihood discriminator
Jet_rawFactorFloat_t1 - Factor to get back to raw pT
nJetUInt_tslimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)
+

L1 [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
L1_AlwaysTrueBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ANDBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_FstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_ORBool_tTrigger/flag bit (process: NANO)
L1_BRIL_TRIG0_delayedANDBool_tTrigger/flag bit (process: NANO)
L1_BeamGasB1Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasB2Bool_tTrigger/flag bit (process: NANO)
L1_BeamGasMinusBool_tTrigger/flag bit (process: NANO)
L1_BeamGasPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxMinusBool_tTrigger/flag bit (process: NANO)
L1_BptxORBool_tTrigger/flag bit (process: NANO)
L1_BptxPlusBool_tTrigger/flag bit (process: NANO)
L1_BptxXORBool_tTrigger/flag bit (process: NANO)
L1_CastorGap_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuonBool_tTrigger/flag bit (process: NANO)
L1_CastorHaloMuon_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorHighJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_CastorMediumJet_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_DoubleEG6_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_15_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_18_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_20_18Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_22_15Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_23_10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_24_17Bool_tTrigger/flag bit (process: NANO)
L1_DoubleEG_25_12Bool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau28erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau30erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau32erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau33erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau34erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau35erBool_tTrigger/flag bit (process: NANO)
L1_DoubleIsoTau36erBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet12_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet16_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu10Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet30_Mj30j30_400_Mu6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet8_ForwardBackwardBool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC100Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC112Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC120Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC50Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC60_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJetC80Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_100_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleJet_90_30_Mj30j30_620Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM65Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p4_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu0er1p6_dEta_Max1p8_OSBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG14Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu7_EG7Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_0_dEta_Max1p8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_3p5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_10_OpenBool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_11_4Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_12_8Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_13_6Bool_tTrigger/flag bit (process: NANO)
L1_DoubleMu_15_5Bool_tTrigger/flag bit (process: NANO)
L1_DoubleTau50erBool_tTrigger/flag bit (process: NANO)
L1_DoubleTau70erBool_tTrigger/flag bit (process: NANO)
L1_EG25er_HTT125Bool_tTrigger/flag bit (process: NANO)
L1_EG27er_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_ETM100Bool_tTrigger/flag bit (process: NANO)
L1_ETM105Bool_tTrigger/flag bit (process: NANO)
L1_ETM110Bool_tTrigger/flag bit (process: NANO)
L1_ETM115Bool_tTrigger/flag bit (process: NANO)
L1_ETM120Bool_tTrigger/flag bit (process: NANO)
L1_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_ETM60Bool_tTrigger/flag bit (process: NANO)
L1_ETM70Bool_tTrigger/flag bit (process: NANO)
L1_ETM75Bool_tTrigger/flag bit (process: NANO)
L1_ETM75_Jet60_dPhi_Min0p4Bool_tTrigger/flag bit (process: NANO)
L1_ETM80Bool_tTrigger/flag bit (process: NANO)
L1_ETM85Bool_tTrigger/flag bit (process: NANO)
L1_ETM90Bool_tTrigger/flag bit (process: NANO)
L1_ETM95Bool_tTrigger/flag bit (process: NANO)
L1_ETT25Bool_tTrigger/flag bit (process: NANO)
L1_ETT40_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT50_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT55_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT60_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT70_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_ETT75_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchAfterTrainBool_tTrigger/flag bit (process: NANO)
L1_FirstBunchInTrainBool_tTrigger/flag bit (process: NANO)
L1_HTM100Bool_tTrigger/flag bit (process: NANO)
L1_HTM120Bool_tTrigger/flag bit (process: NANO)
L1_HTM130Bool_tTrigger/flag bit (process: NANO)
L1_HTM140Bool_tTrigger/flag bit (process: NANO)
L1_HTM150Bool_tTrigger/flag bit (process: NANO)
L1_HTM50Bool_tTrigger/flag bit (process: NANO)
L1_HTM60_HTT260Bool_tTrigger/flag bit (process: NANO)
L1_HTM70Bool_tTrigger/flag bit (process: NANO)
L1_HTM80Bool_tTrigger/flag bit (process: NANO)
L1_HTM80_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT120Bool_tTrigger/flag bit (process: NANO)
L1_HTT160Bool_tTrigger/flag bit (process: NANO)
L1_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_HTT220Bool_tTrigger/flag bit (process: NANO)
L1_HTT240Bool_tTrigger/flag bit (process: NANO)
L1_HTT255Bool_tTrigger/flag bit (process: NANO)
L1_HTT270Bool_tTrigger/flag bit (process: NANO)
L1_HTT280Bool_tTrigger/flag bit (process: NANO)
L1_HTT300Bool_tTrigger/flag bit (process: NANO)
L1_HTT320Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG18er_IsoTau24er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG20er_IsoTau25er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_IsoTau26er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsoEG22er_Tau20er_dEta_Min0p2Bool_tTrigger/flag bit (process: NANO)
L1_IsolatedBunchBool_tTrigger/flag bit (process: NANO)
L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0Bool_tTrigger/flag bit (process: NANO)
L1_MU20_EG15Bool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF0_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_AND_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_ORBool_tTrigger/flag bit (process: NANO)
L1_MinimumBiasHF1_OR_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM40Bool_tTrigger/flag bit (process: NANO)
L1_Mu0er_ETM55Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu10er_ETM50Bool_tTrigger/flag bit (process: NANO)
L1_Mu12_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu14er_ETM30Bool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu16er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau20erBool_tTrigger/flag bit (process: NANO)
L1_Mu18er_Tau24erBool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_EG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu20_IsoEG6Bool_tTrigger/flag bit (process: NANO)
L1_Mu20er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu22er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu23_EG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu23_IsoEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu25er_IsoTau26erBool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60Bool_tTrigger/flag bit (process: NANO)
L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG15Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_EG23Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_Mu5_IsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG10Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_DoubleEG17Bool_tTrigger/flag bit (process: NANO)
L1_Mu6_HTT200Bool_tTrigger/flag bit (process: NANO)
L1_Mu8_HTT150Bool_tTrigger/flag bit (process: NANO)
L1_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_QuadJetC36_Tau52Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC40Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC50Bool_tTrigger/flag bit (process: NANO)
L1_QuadJetC60Bool_tTrigger/flag bit (process: NANO)
L1_QuadMu0Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG10Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG15Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG2_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG38Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG40Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG45Bool_tTrigger/flag bit (process: NANO)
L1_SingleEG5Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG18erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG20erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG22erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG24erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG26erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG28erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG30erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG32erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34Bool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG34erBool_tTrigger/flag bit (process: NANO)
L1_SingleIsoEG36Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet120Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet12_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet140Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet150Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet16Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet160Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet170Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet180Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet20Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet200Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet35Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet60Bool_tTrigger/flag bit (process: NANO)
L1_SingleJet8_BptxANDBool_tTrigger/flag bit (process: NANO)
L1_SingleJet90Bool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC20_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleJetC40_NotBptxOR_5BXBool_tTrigger/flag bit (process: NANO)
L1_SingleMu10_LowQBool_tTrigger/flag bit (process: NANO)
L1_SingleMu12Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu14erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu16Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu16erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu18Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu18erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu20Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu20erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu22Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu22erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu25Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu25erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu3Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu30erBool_tTrigger/flag bit (process: NANO)
L1_SingleMu5Bool_tTrigger/flag bit (process: NANO)
L1_SingleMu7Bool_tTrigger/flag bit (process: NANO)
L1_SingleMuCosmicsBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpenBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxORBool_tTrigger/flag bit (process: NANO)
L1_SingleMuOpen_NotBptxOR_3BXBool_tTrigger/flag bit (process: NANO)
L1_SingleTau100erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau120erBool_tTrigger/flag bit (process: NANO)
L1_SingleTau80erBool_tTrigger/flag bit (process: NANO)
L1_TripleEG_14_10_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleEG_18_17_8Bool_tTrigger/flag bit (process: NANO)
L1_TripleJet_84_68_48_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_88_72_56_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleJet_92_76_64_VBFBool_tTrigger/flag bit (process: NANO)
L1_TripleMu0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_0_0Bool_tTrigger/flag bit (process: NANO)
L1_TripleMu_5_5_3Bool_tTrigger/flag bit (process: NANO)
L1_UnprefireableEventBool_tTrigger/flag bit (process: NANO)
L1_ZeroBiasBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_FirstCollidingBunchBool_tTrigger/flag bit (process: NANO)
L1_ZeroBias_copyBool_tTrigger/flag bit (process: NANO)
+

L1PreFiringWeight [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
L1PreFiringWeight_DnFloat_tL1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_DnFloat_tECAL L1 pre-firing event correction weight (1-probability), down var.
L1PreFiringWeight_ECAL_NomFloat_tECAL L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_ECAL_UpFloat_tECAL L1 pre-firing event correction weight (1-probability), up var.
L1PreFiringWeight_Muon_NomFloat_tMuon L1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_Muon_StatDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. stat.
L1PreFiringWeight_Muon_StatUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. stat.
L1PreFiringWeight_Muon_SystDnFloat_tMuon L1 pre-firing event correction weight (1-probability), down var. syst.
L1PreFiringWeight_Muon_SystUpFloat_tMuon L1 pre-firing event correction weight (1-probability), up var. syst.
L1PreFiringWeight_NomFloat_tL1 pre-firing event correction weight (1-probability)
L1PreFiringWeight_UpFloat_tL1 pre-firing event correction weight (1-probability), up var.
+

L1Reco [back to top]

+ + + +
Object propertyTypeDescription
L1Reco_stepBool_tTrigger/flag bit (process: RECO)
+

LowPtElectron [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
LowPtElectron_IDFloat_tNew ID, BDT (raw) score
LowPtElectron_chargeInt_telectric charge
LowPtElectron_convVetoBool_tpass conversion veto
LowPtElectron_convVtxRadiusFloat_tconversion vertex radius (cm)
LowPtElectron_convWPInt_tconversion flag bit map: 1=Veto, 2=Loose, 3=Tight
LowPtElectron_deltaEtaSCFloat_tdelta eta (SC,ele) with sign
LowPtElectron_dxyFloat_tdxy (with sign) wrt first PV, in cm
LowPtElectron_dxyErrFloat_tdxy uncertainty, in cm
LowPtElectron_dzFloat_tdz (with sign) wrt first PV, in cm
LowPtElectron_dzErrFloat_tdz uncertainty, in cm
LowPtElectron_eInvMinusPInvFloat_t1/E_SC - 1/p_trk
LowPtElectron_embeddedIDFloat_tID, BDT (raw) score
LowPtElectron_energyErrFloat_tenergy error of the cluster-track combination
LowPtElectron_etaFloat_teta
LowPtElectron_hoeFloat_tH over E
LowPtElectron_lostHitsUChar_tnumber of missing inner hits
LowPtElectron_massFloat_tmass
LowPtElectron_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
LowPtElectron_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
LowPtElectron_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
LowPtElectron_phiFloat_tphi
LowPtElectron_ptFloat_tpt
LowPtElectron_ptbiasedFloat_tElectronSeed, pT- and dxy- dependent BDT (raw) score
LowPtElectron_r9Float_tR9 of the SC, calculated with full 5x5 region
LowPtElectron_scEtOverPtFloat_t(SC energy)/pt-1
LowPtElectron_sieieFloat_tsigma_IetaIeta of the SC, calculated with full 5x5 region
LowPtElectron_unbiasedFloat_tElectronSeed, pT- and dxy- agnostic BDT (raw) score
nLowPtElectronUInt_tslimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)
+

MET [back to top]

+ + + + + + + + + + + + +
Object propertyTypeDescription
MET_MetUnclustEnUpDeltaXFloat_tDelta (METx_mod-METx) Unclustered Energy Up
MET_MetUnclustEnUpDeltaYFloat_tDelta (METy_mod-METy) Unclustered Energy Up
MET_covXXFloat_txx element of met covariance matrix
MET_covXYFloat_txy element of met covariance matrix
MET_covYYFloat_tyy element of met covariance matrix
MET_phiFloat_tphi
MET_ptFloat_tpt
MET_significanceFloat_tMET significance
MET_sumEtFloat_tscalar sum of Et
MET_sumPtUnclusteredFloat_tsumPt used for MET significance
+

Muon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Muon_chargeInt_telectric charge
Muon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Muon_dxyFloat_tdxy (with sign) wrt first PV, in cm
Muon_dxyErrFloat_tdxy uncertainty, in cm
Muon_dxybsFloat_tdxy (with sign) wrt the beam spot, in cm
Muon_dzFloat_tdz (with sign) wrt first PV, in cm
Muon_dzErrFloat_tdz uncertainty, in cm
Muon_etaFloat_teta
Muon_fsrPhotonIdxInt_t(index to Fsrphoton)Index of the associated FSR photon
Muon_highPtIdUChar_thigh-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)
Muon_highPurityBool_tinner track is high purity
Muon_inTimeMuonBool_tinTimeMuon ID
Muon_ip3dFloat_t3D impact parameter wrt first PV, in cm
Muon_isGlobalBool_tmuon is global muon
Muon_isPFcandBool_tmuon is PF candidate
Muon_isStandaloneBool_tmuon is a standalone muon
Muon_isTrackerBool_tmuon is tracker muon
Muon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Muon_jetNDauChargedUChar_tnumber of charged daughters of the closest jet
Muon_jetPtRelv2Float_tRelative momentum of the lepton with respect to the closest jet after subtracting the lepton
Muon_jetRelIsoFloat_tRelative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)
Muon_looseIdBool_tmuon is loose muon
Muon_massFloat_tmass
Muon_mediumIdBool_tcut-based ID, medium WP
Muon_mediumPromptIdBool_tcut-based ID, medium prompt WP
Muon_miniIsoIdUChar_tMiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)
Muon_miniPFRelIso_allFloat_tmini PF relative isolation, total (with scaled rho*EA PU corrections)
Muon_miniPFRelIso_chgFloat_tmini PF relative isolation, charged component
Muon_multiIsoIdUChar_tMultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)
Muon_mvaIdUChar_tMva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)
Muon_mvaLowPtFloat_tLow pt muon ID score
Muon_mvaLowPtIdUChar_tLow Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)
Muon_mvaTTHFloat_tTTH MVA lepton ID score
Muon_nStationsInt_tnumber of matched stations with default arbitration (segment & track)
Muon_nTrackerLayersInt_tnumber of layers in the tracker
Muon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Muon_pfIsoIdUChar_tPFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)
Muon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (deltaBeta corrections)
Muon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component
Muon_pfRelIso04_allFloat_tPF relative isolation dR=0.4, total (deltaBeta corrections)
Muon_phiFloat_tphi
Muon_ptFloat_tpt
Muon_ptErrFloat_tptError of the muon track
Muon_puppiIsoIdUChar_tPuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)
Muon_segmentCompFloat_tmuon segment compatibility
Muon_sip3dFloat_t3D impact parameter significance wrt first PV
Muon_softIdBool_tsoft cut-based ID
Muon_softMvaFloat_tsoft MVA ID score
Muon_softMvaIdBool_tsoft MVA ID
Muon_tightChargeInt_tTight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)
Muon_tightIdBool_tcut-based ID, tight WP
Muon_tkIsoIdUChar_tTkIso ID (1=TkIsoLoose, 2=TkIsoTight)
Muon_tkRelIsoFloat_tTracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt
Muon_triggerIdLooseBool_tTriggerIdLoose ID
Muon_tunepRelPtFloat_tTuneP relative pt, tunePpt/pt
nMuonUInt_tslimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))
+

OtherPV [back to top]

+ + + + +
Object propertyTypeDescription
OtherPV_zFloat_tZ position of other primary vertices, excluding the main PV
nOtherPVUInt_t
+

PPSLocalTrack [back to top]

+ + + + + + + + + + + +
Object propertyTypeDescription
PPSLocalTrack_decRPIdInt_tlocal track detector dec id
PPSLocalTrack_multiRPProtonIdxInt_t(index to Multirpproton)local track - proton correspondence
PPSLocalTrack_rpTypeInt_tstrip=3, pixel=4, diamond=5, timing=6
PPSLocalTrack_singleRPProtonIdxInt_t(index to Singlerpproton)local track - proton correspondence
PPSLocalTrack_timeFloat_tlocal track time
PPSLocalTrack_timeUncFloat_tlocal track time uncertainty
PPSLocalTrack_xFloat_tlocal track x
PPSLocalTrack_yFloat_tlocal track y
nPPSLocalTrackUInt_tppsLocalTrack variables
+

PV [back to top]

+ + + + + + + + + + +
Object propertyTypeDescription
PV_chi2Float_tmain primary vertex reduced chi2
PV_ndofFloat_tmain primary vertex number of degree of freedom
PV_npvsInt_ttotal number of reconstructed primary vertices
PV_npvsGoodInt_tnumber of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2
PV_scoreFloat_tmain primary vertex score, i.e. sum pt2 of clustered objects
PV_xFloat_tmain primary vertex position x coordinate
PV_yFloat_tmain primary vertex position y coordinate
PV_zFloat_tmain primary vertex position z coordinate
+

Photon [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Photon_chargeInt_telectric charge
Photon_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Photon_cutBasedInt_tcut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)
Photon_cutBased_Fall17V1BitmapInt_tcut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).
Photon_dEscaleDownFloat_tecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)
Photon_dEscaleUpFloat_tecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)
Photon_dEsigmaDownFloat_tecal energy smearing value shifted 1 sigma up
Photon_dEsigmaUpFloat_tecal energy smearing value shifted 1 sigma up
Photon_eCorrFloat_tratio of the calibrated energy/miniaod energy
Photon_electronIdxInt_t(index to Electron)index of the associated electron (-1 if none)
Photon_electronVetoBool_tpass electron veto
Photon_energyErrFloat_tenergy error of the cluster from regression
Photon_etaFloat_teta
Photon_hoeFloat_tH over E
Photon_isScEtaEBBool_tis supercluster eta within barrel acceptance
Photon_isScEtaEEBool_tis supercluster eta within endcap acceptance
Photon_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Photon_massFloat_tmass
Photon_mvaIDFloat_tMVA ID score, Fall17V2
Photon_mvaID_Fall17V1p1Float_tMVA ID score, Fall17V1p1
Photon_mvaID_WP80Bool_tMVA ID WP80, Fall17V2
Photon_mvaID_WP90Bool_tMVA ID WP90, Fall17V2
Photon_pdgIdInt_tPDG code assigned by the event reconstruction (not by MC truth)
Photon_pfRelIso03_allFloat_tPF relative isolation dR=0.3, total (with rho*EA PU corrections)
Photon_pfRelIso03_chgFloat_tPF relative isolation dR=0.3, charged component (with rho*EA PU corrections)
Photon_phiFloat_tphi
Photon_pixelSeedBool_thas pixel seed
Photon_ptFloat_tp_{T}
Photon_r9Float_tR9 of the supercluster, calculated with full 5x5 region
Photon_seedGainUChar_tGain of the seed crystal
Photon_sieieFloat_tsigma_IetaIeta of the supercluster, calculated with full 5x5 region
Photon_vidNestedWPBitmapInt_tFall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut
nPhotonUInt_tslimmedPhotons after basic selection (pt > 5 )
+

Proton [back to top]

+ + + + + + + + + + + + + + +
Object propertyTypeDescription
Proton_multiRP_armInt_t0 = sector45, 1 = sector56
Proton_multiRP_tFloat_tMandelstam variable t
Proton_multiRP_thetaXFloat_ttheta x
Proton_multiRP_thetaYFloat_ttheta y
Proton_multiRP_timeFloat_ttime
Proton_multiRP_timeUncFloat_ttime uncertainty
Proton_multiRP_xiFloat_txi or dp/p
Proton_singleRP_decRPIdInt_tDetector ID
Proton_singleRP_thetaYFloat_tth y
Proton_singleRP_xiFloat_txi or dp/p
nProton_multiRPUInt_tbon
nProton_singleRPUInt_tbon
+

PuppiMET [back to top]

+ + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
PuppiMET_phiFloat_tphi
PuppiMET_phiJERDownFloat_tJER down phi
PuppiMET_phiJERUpFloat_tJER up phi
PuppiMET_phiJESDownFloat_tJES down phi
PuppiMET_phiJESUpFloat_tJES up phi
PuppiMET_phiUnclusteredDownFloat_tUnclustered down phi
PuppiMET_phiUnclusteredUpFloat_tUnclustered up phi
PuppiMET_ptFloat_tpt
PuppiMET_ptJERDownFloat_tJER down pt
PuppiMET_ptJERUpFloat_tJER up pt
PuppiMET_ptJESDownFloat_tJES down pt
PuppiMET_ptJESUpFloat_tJES up pt
PuppiMET_ptUnclusteredDownFloat_tUnclustered down pt
PuppiMET_ptUnclusteredUpFloat_tUnclustered up pt
PuppiMET_sumEtFloat_tscalar sum of Et
+

RawMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawMET_phiFloat_tphi
RawMET_ptFloat_tpt
RawMET_sumEtFloat_tscalar sum of Et
+

RawPuppiMET [back to top]

+ + + + + +
Object propertyTypeDescription
RawPuppiMET_phiFloat_tphi
RawPuppiMET_ptFloat_tpt
RawPuppiMET_sumEtFloat_tscalar sum of Et
+

SV [back to top]

+ + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SV_chargeInt_tsum of the charge of the SV tracks
SV_chi2Float_treduced chi2, i.e. chi/ndof
SV_dlenFloat_tdecay length in cm
SV_dlenSigFloat_tdecay length significance
SV_dxyFloat_t2D decay length in cm
SV_dxySigFloat_t2D decay length significance
SV_etaFloat_teta
SV_massFloat_tmass
SV_ndofFloat_tnumber of degrees of freedom
SV_ntracksUChar_tnumber of tracks
SV_pAngleFloat_tpointing angle, i.e. acos(p_SV * (SV - PV))
SV_phiFloat_tphi
SV_ptFloat_tpt
SV_xFloat_tsecondary vertex X position, in cm
SV_yFloat_tsecondary vertex Y position, in cm
SV_zFloat_tsecondary vertex Z position, in cm
nSVUInt_t
+

SoftActivityJet [back to top]

+ + + + + + +
Object propertyTypeDescription
SoftActivityJet_etaFloat_teta
SoftActivityJet_phiFloat_tphi
SoftActivityJet_ptFloat_tpt
nSoftActivityJetUInt_tjets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)
+

SoftActivityJetHT [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHTFloat_tscalar sum of soft activity jet pt, pt>1
+

SoftActivityJetHT10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT10Float_tscalar sum of soft activity jet pt , pt >10
+

SoftActivityJetHT2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT2Float_tscalar sum of soft activity jet pt, pt >2
+

SoftActivityJetHT5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetHT5Float_tscalar sum of soft activity jet pt, pt>5
+

SoftActivityJetNjets10 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets10Int_tnumber of soft activity jet pt, pt >2
+

SoftActivityJetNjets2 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets2Int_tnumber of soft activity jet pt, pt >10
+

SoftActivityJetNjets5 [back to top]

+ + + +
Object propertyTypeDescription
SoftActivityJetNjets5Int_tnumber of soft activity jet pt, pt >5
+

SubJet [back to top]

+ + + + + + + + + + + + + + + + +
Object propertyTypeDescription
SubJet_btagCSVV2Float_t pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)
SubJet_btagDeepBFloat_tDeepCSV b+bb tag discriminator
SubJet_etaFloat_teta
SubJet_massFloat_tmass
SubJet_n2b1Float_tN2 with beta=1
SubJet_n3b1Float_tN3 with beta=1
SubJet_phiFloat_tphi
SubJet_ptFloat_tpt
SubJet_rawFactorFloat_t1 - Factor to get back to raw pT
SubJet_tau1Float_tNsubjettiness (1 axis)
SubJet_tau2Float_tNsubjettiness (2 axis)
SubJet_tau3Float_tNsubjettiness (3 axis)
SubJet_tau4Float_tNsubjettiness (4 axis)
nSubJetUInt_tslimmedJetsAK8, i.e. ak8 fat jets for boosted analysis
+

Tau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
Tau_chargeInt_telectric charge
Tau_chargedIsoFloat_tcharged isolation
Tau_cleanmaskUChar_tsimple cleaning mask with priority to leptons
Tau_decayModeInt_tdecayMode()
Tau_dxyFloat_td_{xy} of lead track with respect to PV, in cm (with sign)
Tau_dzFloat_td_{z} of lead track with respect to PV, in cm (with sign)
Tau_etaFloat_teta
Tau_idAntiEleDeadECalBool_tAnti-electron dead-ECal discriminator
Tau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
Tau_idDecayModeOldDMsBool_ttauID('decayModeFinding')
Tau_idDeepTau2017v2p1VSeUChar_tbyDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSjetUChar_tbyDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight
Tau_idDeepTau2017v2p1VSmuUChar_tbyDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight
Tau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
Tau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
Tau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
Tau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
Tau_massFloat_tmass
Tau_neutralIsoFloat_tneutral (photon) isolation
Tau_phiFloat_tphi
Tau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
Tau_ptFloat_tpt
Tau_puCorrFloat_tpileup correction
Tau_rawDeepTau2017v2p1VSeFloat_tbyDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSjetFloat_tbyDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)
Tau_rawDeepTau2017v2p1VSmuFloat_tbyDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)
Tau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
Tau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
nTauUInt_tslimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))
+

TkMET [back to top]

+ + + + + +
Object propertyTypeDescription
TkMET_phiFloat_traw track MET phi
TkMET_ptFloat_traw track MET pt
TkMET_sumEtFloat_traw track scalar sum of Et
+

TrigObj [back to top]

+ + + + + + + + + + + + + +
Object propertyTypeDescription
TrigObj_etaFloat_teta
TrigObj_filterBitsInt_textra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT;
TrigObj_idInt_tID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT
TrigObj_l1chargeInt_tcharge of associated L1 seed
TrigObj_l1isoInt_tiso of associated L1 seed
TrigObj_l1ptFloat_tpt of associated L1 seed
TrigObj_l1pt_2Float_tpt of associated secondary L1 seed
TrigObj_l2ptFloat_tpt of associated 'L2' seed (i.e. HLT before tracking/PF)
TrigObj_phiFloat_tphi
TrigObj_ptFloat_tpt
nTrigObjUInt_t
+

boostedTau [back to top]

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Object propertyTypeDescription
boostedTau_chargeInt_telectric charge
boostedTau_chargedIsoFloat_tcharged isolation
boostedTau_decayModeInt_tdecayMode()
boostedTau_etaFloat_teta
boostedTau_idAntiEle2018UChar_tAnti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight
boostedTau_idAntiMuUChar_tAnti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight
boostedTau_idMVAnewDM2017v2UChar_tIsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDM2017v2UChar_tIsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_idMVAoldDMdR032017v2UChar_tIsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight
boostedTau_jetIdxInt_t(index to Jet)index of the associated jet (-1 if none)
boostedTau_leadTkDeltaEtaFloat_teta of the leading track, minus tau eta
boostedTau_leadTkDeltaPhiFloat_tphi of the leading track, minus tau phi
boostedTau_leadTkPtOverTauPtFloat_tpt of the leading track divided by tau pt
boostedTau_massFloat_tmass
boostedTau_neutralIsoFloat_tneutral (photon) isolation
boostedTau_phiFloat_tphi
boostedTau_photonsOutsideSignalConeFloat_tsum of photons outside signal cone
boostedTau_ptFloat_tpt
boostedTau_puCorrFloat_tpileup correction
boostedTau_rawAntiEle2018Float_tAnti-electron MVA discriminator V6 raw output discriminator (2018)
boostedTau_rawAntiEleCat2018Int_tAnti-electron MVA discriminator V6 category (2018)
boostedTau_rawIsoFloat_tcombined isolation (deltaBeta corrections)
boostedTau_rawIsodR03Float_tcombined isolation (deltaBeta corrections, dR=0.3)
boostedTau_rawMVAnewDM2017v2Float_tbyIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDM2017v2Float_tbyIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)
boostedTau_rawMVAoldDMdR032017v2Float_tbyIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)
nboostedTauUInt_tslimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))
+

event [back to top]

+ + + +
Object propertyTypeDescription
eventULong64_tevent/l
+

fixedGridRhoFastjetAll [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetAllFloat_trho from all PF Candidates, used e.g. for JECs
+

fixedGridRhoFastjetCentral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralFloat_trho from all PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralCalo [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralCaloFloat_trho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation
+

fixedGridRhoFastjetCentralChargedPileUp [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralChargedPileUpFloat_trho from charged PF Candidates for central region, used e.g. for JECs
+

fixedGridRhoFastjetCentralNeutral [back to top]

+ + + +
Object propertyTypeDescription
fixedGridRhoFastjetCentralNeutralFloat_trho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations
+

luminosityBlock [back to top]

+ + + +
Object propertyTypeDescription
luminosityBlockUInt_tluminosityBlock/i
+

run [back to top]

+ + + +
Object propertyTypeDescription
runUInt_trun/i
+ + + \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/docs/NanoAOD/30565/Tau_doc.json b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30565/Tau_doc.json new file mode 100644 index 000000000..4939ff659 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/docs/NanoAOD/30565/Tau_doc.json @@ -0,0 +1,13944 @@ +{ + "filename": "03DD0FB3-219B-C54D-A476-EE8937CC214E.root", + "filesize": 2260754.123046875, + "trees": { + "Events": { + "entries": 2160343, + "allsize": 2256299.6572265625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 57.791015625, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 64.400390625, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "event": { + "name": "event", + "doc": "event/l", + "tot": 5792.330078125, + "entries": 2160343, + "single": true, + "kind": "ULong64_t", + "counter": "" + }, + "nboostedTau": { + "name": "nboostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "tot": 444.529296875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "boostedTau_chargedIso": { + "name": "boostedTau_chargedIso", + "doc": "charged isolation", + "tot": 1719.1142578125, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_eta": { + "name": "boostedTau_eta", + "doc": "eta", + "tot": 2254.9296875, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaEta": { + "name": "boostedTau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 1881.0712890625, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkDeltaPhi": { + "name": "boostedTau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 1885.6962890625, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_leadTkPtOverTauPt": { + "name": "boostedTau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 1814.619140625, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_mass": { + "name": "boostedTau_mass", + "doc": "mass", + "tot": 1721.9677734375, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_neutralIso": { + "name": "boostedTau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 1577.3916015625, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_phi": { + "name": "boostedTau_phi", + "doc": "phi", + "tot": 2261.171875, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_photonsOutsideSignalCone": { + "name": "boostedTau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 1334.9443359375, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_pt": { + "name": "boostedTau_pt", + "doc": "pt", + "tot": 2804.7353515625, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_puCorr": { + "name": "boostedTau_puCorr", + "doc": "pileup correction", + "tot": 1886.3212890625, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEle2018": { + "name": "boostedTau_rawAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 raw output discriminator (2018)", + "tot": 1812.2080078125, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIso": { + "name": "boostedTau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 1831.5869140625, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawIsodR03": { + "name": "boostedTau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 1743.5673828125, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAnewDM2017v2": { + "name": "boostedTau_rawMVAnewDM2017v2", + "doc": "byIsolationMVArun2017v2DBnewDMwLT raw output discriminator (2017v2)", + "tot": 2000.041015625, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDM2017v2": { + "name": "boostedTau_rawMVAoldDM2017v2", + "doc": "byIsolationMVArun2017v2DBoldDMwLT raw output discriminator (2017v2)", + "tot": 1775.193359375, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_rawMVAoldDMdR032017v2": { + "name": "boostedTau_rawMVAoldDMdR032017v2", + "doc": "byIsolationMVArun2017v2DBoldDMdR0p3wLT raw output discriminator (2017v2)", + "tot": 2449.888671875, + "entries": 623609.0, + "single": false, + "kind": "Float_t", + "counter": "nboostedTau" + }, + "boostedTau_charge": { + "name": "boostedTau_charge", + "doc": "electric charge", + "tot": 867.4775390625, + "entries": 623609.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_decayMode": { + "name": "boostedTau_decayMode", + "doc": "decayMode()", + "tot": 1028.103515625, + "entries": 623609.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_jetIdx": { + "name": "boostedTau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 731.2744140625, + "entries": 623609.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nboostedTau" + }, + "boostedTau_rawAntiEleCat2018": { + "name": "boostedTau_rawAntiEleCat2018", + "doc": "Anti-electron MVA discriminator V6 category (2018)", + "tot": 1038.611328125, + "entries": 623609.0, + "single": false, + "kind": "Int_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiEle2018": { + "name": "boostedTau_idAntiEle2018", + "doc": "Anti-electron MVA discriminator V6 (2018): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight, 16 = VTight", + "tot": 924.869140625, + "entries": 623609.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idAntiMu": { + "name": "boostedTau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 767.0458984375, + "entries": 623609.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAnewDM2017v2": { + "name": "boostedTau_idMVAnewDM2017v2", + "doc": "IsolationMVArun2017v2DBnewDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 1016.8076171875, + "entries": 623609.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDM2017v2": { + "name": "boostedTau_idMVAoldDM2017v2", + "doc": "IsolationMVArun2017v2DBoldDMwLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 996.6044921875, + "entries": 623609.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "boostedTau_idMVAoldDMdR032017v2": { + "name": "boostedTau_idMVAoldDMdR032017v2", + "doc": "IsolationMVArun2017v2DBoldDMdR0p3wLT ID working point (2017v2): bitmask 1 = VVLoose, 2 = VLoose, 4 = Loose, 8 = Medium, 16 = Tight, 32 = VTight, 64 = VVTight", + "tot": 984.4365234375, + "entries": 623609.0, + "single": false, + "kind": "UChar_t", + "counter": "nboostedTau" + }, + "CaloMET_phi": { + "name": "CaloMET_phi", + "doc": "phi", + "tot": 4070.572265625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_pt": { + "name": "CaloMET_pt", + "doc": "pt", + "tot": 3837.63671875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "CaloMET_sumEt": { + "name": "CaloMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3384.544921875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_phi": { + "name": "ChsMET_phi", + "doc": "raw chs PF MET phi", + "tot": 4086.671875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_pt": { + "name": "ChsMET_pt", + "doc": "raw chs PF MET pt", + "tot": 3827.232421875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "ChsMET_sumEt": { + "name": "ChsMET_sumEt", + "doc": "raw chs PF scalar sum of Et", + "tot": 3333.984375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nCorrT1METJet": { + "name": "nCorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "tot": 1154.232421875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "CorrT1METJet_area": { + "name": "CorrT1METJet_area", + "doc": "jet catchment area, for JECs", + "tot": 10727.0263671875, + "entries": 12298425.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_eta": { + "name": "CorrT1METJet_eta", + "doc": "eta", + "tot": 28365.908203125, + "entries": 12298425.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_muonSubtrFactor": { + "name": "CorrT1METJet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 18340.263671875, + "entries": 12298425.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_phi": { + "name": "CorrT1METJet_phi", + "doc": "phi", + "tot": 28686.056640625, + "entries": 12298425.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "CorrT1METJet_rawPt": { + "name": "CorrT1METJet_rawPt", + "doc": "pt()*jecFactor('Uncorrected')", + "tot": 19926.7265625, + "entries": 12298425.0, + "single": false, + "kind": "Float_t", + "counter": "nCorrT1METJet" + }, + "DeepMETResolutionTune_phi": { + "name": "DeepMETResolutionTune_phi", + "doc": "DeepmET ResolutionTune phi", + "tot": 4860.837890625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResolutionTune_pt": { + "name": "DeepMETResolutionTune_pt", + "doc": "DeepMET ResolutionTune pt", + "tot": 7543.609375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_phi": { + "name": "DeepMETResponseTune_phi", + "doc": "DeepMET ResponseTune phi", + "tot": 4926.001953125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "DeepMETResponseTune_pt": { + "name": "DeepMETResponseTune_pt", + "doc": "DeepMET ResponseTune pt", + "tot": 7534.20703125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nElectron": { + "name": "nElectron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "tot": 585.060546875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Electron_dEscaleDown": { + "name": "Electron_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3120.755859375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEscaleUp": { + "name": "Electron_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up(adding gain/stat/syst in quadrature)", + "tot": 3117.44140625, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaDown": { + "name": "Electron_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1032.439453125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dEsigmaUp": { + "name": "Electron_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1032.16796875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_deltaEtaSC": { + "name": "Electron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3612.9560546875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03EcalRecHitSumEt": { + "name": "Electron_dr03EcalRecHitSumEt", + "doc": "Non-PF Ecal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 2008.787109375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03HcalDepth1TowerSumEt": { + "name": "Electron_dr03HcalDepth1TowerSumEt", + "doc": "Non-PF Hcal isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1925.3720703125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPt": { + "name": "Electron_dr03TkSumPt", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV", + "tot": 1712.470703125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dr03TkSumPtHEEP": { + "name": "Electron_dr03TkSumPtHEEP", + "doc": "Non-PF track isolation within a delta R cone of 0.3 with electron pt > 35 GeV used in HEEP ID", + "tot": 1709.662109375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxy": { + "name": "Electron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3800.009765625, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dxyErr": { + "name": "Electron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2639.4052734375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dz": { + "name": "Electron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3848.3544921875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_dzErr": { + "name": "Electron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2635.515625, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eCorr": { + "name": "Electron_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 4358.7578125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eInvMinusPInv": { + "name": "Electron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3724.26171875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_energyErr": { + "name": "Electron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2812.74609375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_eta": { + "name": "Electron_eta", + "doc": "eta", + "tot": 4038.150390625, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_hoe": { + "name": "Electron_hoe", + "doc": "H over E", + "tot": 2844.314453125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_ip3d": { + "name": "Electron_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3645.0166015625, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetPtRelv2": { + "name": "Electron_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 3028.4248046875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_jetRelIso": { + "name": "Electron_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 3134.24609375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mass": { + "name": "Electron_mass", + "doc": "mass", + "tot": 3647.2939453125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_all": { + "name": "Electron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 5166.6611328125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_miniPFRelIso_chg": { + "name": "Electron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4650.6611328125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso": { + "name": "Electron_mvaFall17V2Iso", + "doc": "MVA Iso ID V2 score", + "tot": 4158.1982421875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso": { + "name": "Electron_mvaFall17V2noIso", + "doc": "MVA noIso ID V2 score", + "tot": 4291.4384765625, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_all": { + "name": "Electron_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 5262.2685546875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pfRelIso03_chg": { + "name": "Electron_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4878.7724609375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_phi": { + "name": "Electron_phi", + "doc": "phi", + "tot": 4021.619140625, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_pt": { + "name": "Electron_pt", + "doc": "p_{T}", + "tot": 5497.1123046875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_r9": { + "name": "Electron_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3131.3271484375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_scEtOverPt": { + "name": "Electron_scEtOverPt", + "doc": "(supercluster transverse energy)/pt-1", + "tot": 3191.1201171875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sieie": { + "name": "Electron_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 3226.39453125, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_sip3d": { + "name": "Electron_sip3d", + "doc": "3D impact parameter significance wrt first PV, in cm", + "tot": 3533.30859375, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_mvaTTH": { + "name": "Electron_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 3173.5966796875, + "entries": 1268548.0, + "single": false, + "kind": "Float_t", + "counter": "nElectron" + }, + "Electron_charge": { + "name": "Electron_charge", + "doc": "electric charge", + "tot": 1270.1904296875, + "entries": 1268548.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_cutBased": { + "name": "Electron_cutBased", + "doc": "cut-based ID Fall17 V2 (0:fail, 1:veto, 2:loose, 3:medium, 4:tight)", + "tot": 1261.9267578125, + "entries": 1268548.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_jetIdx": { + "name": "Electron_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1587.6513671875, + "entries": 1268548.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nElectron" + }, + "Electron_pdgId": { + "name": "Electron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1271.05078125, + "entries": 1268548.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_photonIdx": { + "name": "Electron_photonIdx", + "doc": "index of the associated photon (-1 if none)", + "tot": 1402.953125, + "entries": 1268548.0, + "single": false, + "kind": "Int_t(index to Photon)", + "counter": "nElectron" + }, + "Electron_tightCharge": { + "name": "Electron_tightCharge", + "doc": "Tight charge criteria (0:none, 1:isGsfScPixChargeConsistent, 2:isGsfCtfScPixChargeConsistent)", + "tot": 1325.681640625, + "entries": 1268548.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmap": { + "name": "Electron_vidNestedWPBitmap", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaCut,GsfEleHadronicOverEMEnergyScaledCut,GsfEleEInverseMinusPInverseCut,GsfEleRelPFIsoScaledCut,GsfEleConversionVetoCut,GsfEleMissingHitsCut), 3 bits per cut", + "tot": 2972.08203125, + "entries": 1268548.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_vidNestedWPBitmapHEEP": { + "name": "Electron_vidNestedWPBitmapHEEP", + "doc": "VID compressed bitmap (MinPtCut,GsfEleSCEtaMultiRangeCut,GsfEleDEtaInSeedCut,GsfEleDPhiInCut,GsfEleFull5x5SigmaIEtaIEtaWithSatCut,GsfEleFull5x5E2x5OverE5x5WithSatCut,GsfEleHadronicOverEMLinearCut,GsfEleTrkPtIsoCut,GsfEleEmHadD1IsoRhoCut,GsfEleDxyCut,GsfEleMissingHitsCut,GsfEleEcalDrivenCut), 1 bits per cut", + "tot": 2670.84765625, + "entries": 1268548.0, + "single": false, + "kind": "Int_t", + "counter": "nElectron" + }, + "Electron_convVeto": { + "name": "Electron_convVeto", + "doc": "pass conversion veto", + "tot": 991.0166015625, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_cutBased_HEEP": { + "name": "Electron_cutBased_HEEP", + "doc": "cut-based HEEP ID", + "tot": 1031.41015625, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_isPFcand": { + "name": "Electron_isPFcand", + "doc": "electron is PF candidate", + "tot": 1147.9228515625, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_jetNDauCharged": { + "name": "Electron_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1480.5380859375, + "entries": 1268548.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_lostHits": { + "name": "Electron_lostHits", + "doc": "number of missing inner hits", + "tot": 1155.3134765625, + "entries": 1268548.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP80": { + "name": "Electron_mvaFall17V2Iso_WP80", + "doc": "MVA Iso ID V2 WP80", + "tot": 1034.845703125, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WP90": { + "name": "Electron_mvaFall17V2Iso_WP90", + "doc": "MVA Iso ID V2 WP90", + "tot": 1046.990234375, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2Iso_WPL": { + "name": "Electron_mvaFall17V2Iso_WPL", + "doc": "MVA Iso ID V2 loose WP", + "tot": 1076.0966796875, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP80": { + "name": "Electron_mvaFall17V2noIso_WP80", + "doc": "MVA noIso ID V2 WP80", + "tot": 1040.26171875, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WP90": { + "name": "Electron_mvaFall17V2noIso_WP90", + "doc": "MVA noIso ID V2 WP90", + "tot": 1057.7734375, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_mvaFall17V2noIso_WPL": { + "name": "Electron_mvaFall17V2noIso_WPL", + "doc": "MVA noIso ID V2 loose WP", + "tot": 1092.5126953125, + "entries": 1268548.0, + "single": false, + "kind": "Bool_t", + "counter": "nElectron" + }, + "Electron_seedGain": { + "name": "Electron_seedGain", + "doc": "Gain of the seed crystal", + "tot": 951.9072265625, + "entries": 1268548.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "nFatJet": { + "name": "nFatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 568.908203125, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FatJet_area": { + "name": "FatJet_area", + "doc": "jet catchment area, for JECs", + "tot": 1866.7451171875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagCSVV2": { + "name": "FatJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 3329.021484375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDBvLV2": { + "name": "FatJet_btagDDBvLV2", + "doc": "DeepDoubleX V2(mass-decorrelated) discriminator for H(Z)->bb vs QCD", + "tot": 3635.50390625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvBV2": { + "name": "FatJet_btagDDCvBV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs H(Z)->bb", + "tot": 3319.75, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDDCvLV2": { + "name": "FatJet_btagDDCvLV2", + "doc": "DeepDoubleX V2 (mass-decorrelated) discriminator for H(Z)->cc vs QCD", + "tot": 3531.140625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagDeepB": { + "name": "FatJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 3436.466796875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_btagHbb": { + "name": "FatJet_btagHbb", + "doc": "Higgs to BB tagger discriminator", + "tot": 3265.01953125, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_H4qvsQCD": { + "name": "FatJet_deepTagMD_H4qvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->4q vs QCD discriminator", + "tot": 3134.0166015625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_HbbvsQCD": { + "name": "FatJet_deepTagMD_HbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger H->bb vs QCD discriminator", + "tot": 3427.8681640625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_TvsQCD": { + "name": "FatJet_deepTagMD_TvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger top vs QCD discriminator", + "tot": 3347.4794921875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_WvsQCD": { + "name": "FatJet_deepTagMD_WvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger W vs QCD discriminator", + "tot": 3046.6943359375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHbbvsQCD": { + "name": "FatJet_deepTagMD_ZHbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->bb vs QCD discriminator", + "tot": 3426.265625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZHccvsQCD": { + "name": "FatJet_deepTagMD_ZHccvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H->cc vs QCD discriminator", + "tot": 3176.48828125, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZbbvsQCD": { + "name": "FatJet_deepTagMD_ZbbvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z->bb vs QCD discriminator", + "tot": 3332.8720703125, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ZvsQCD": { + "name": "FatJet_deepTagMD_ZvsQCD", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 3027.6552734375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_bbvsLight": { + "name": "FatJet_deepTagMD_bbvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->bb vs light flavour discriminator", + "tot": 3415.2734375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTagMD_ccvsLight": { + "name": "FatJet_deepTagMD_ccvsLight", + "doc": "Mass-decorrelated DeepBoostedJet tagger Z/H/gluon->cc vs light flavour discriminator", + "tot": 3126.58984375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_H": { + "name": "FatJet_deepTag_H", + "doc": "DeepBoostedJet tagger H(bb,cc,4q) sum", + "tot": 3533.037109375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCD": { + "name": "FatJet_deepTag_QCD", + "doc": "DeepBoostedJet tagger QCD(bb,cc,b,c,others) sum", + "tot": 3042.3828125, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_QCDothers": { + "name": "FatJet_deepTag_QCDothers", + "doc": "DeepBoostedJet tagger QCDothers value", + "tot": 3212.654296875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_TvsQCD": { + "name": "FatJet_deepTag_TvsQCD", + "doc": "DeepBoostedJet tagger top vs QCD discriminator", + "tot": 3653.6103515625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_WvsQCD": { + "name": "FatJet_deepTag_WvsQCD", + "doc": "DeepBoostedJet tagger W vs QCD discriminator", + "tot": 3551.6884765625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_deepTag_ZvsQCD": { + "name": "FatJet_deepTag_ZvsQCD", + "doc": "DeepBoostedJet tagger Z vs QCD discriminator", + "tot": 3541.9853515625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_eta": { + "name": "FatJet_eta", + "doc": "eta", + "tot": 4062.4140625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_mass": { + "name": "FatJet_mass", + "doc": "mass", + "tot": 3272.9013671875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_msoftdrop": { + "name": "FatJet_msoftdrop", + "doc": "Corrected soft drop mass with PUPPI", + "tot": 3093.525390625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n2b1": { + "name": "FatJet_n2b1", + "doc": "N2 with beta=1", + "tot": 2720.4248046875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_n3b1": { + "name": "FatJet_n3b1", + "doc": "N3 with beta=1", + "tot": 1709.1357421875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_QCD": { + "name": "FatJet_particleNetMD_QCD", + "doc": "Mass-decorrelated ParticleNet tagger raw QCD score", + "tot": 3242.302734375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xbb": { + "name": "FatJet_particleNetMD_Xbb", + "doc": "Mass-decorrelated ParticleNet tagger raw X->bb score. For X->bb vs QCD tagging, use Xbb/(Xbb+QCD)", + "tot": 3626.435546875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xcc": { + "name": "FatJet_particleNetMD_Xcc", + "doc": "Mass-decorrelated ParticleNet tagger raw X->cc score. For X->cc vs QCD tagging, use Xcc/(Xcc+QCD)", + "tot": 3471.224609375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNetMD_Xqq": { + "name": "FatJet_particleNetMD_Xqq", + "doc": "Mass-decorrelated ParticleNet tagger raw X->qq (uds) score. For X->qq vs QCD tagging, use Xqq/(Xqq+QCD). For W vs QCD tagging, use (Xcc+Xqq)/(Xcc+Xqq+QCD)", + "tot": 3489.869140625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_H4qvsQCD": { + "name": "FatJet_particleNet_H4qvsQCD", + "doc": "ParticleNet tagger H(->VV->qqqq) vs QCD discriminator", + "tot": 3687.6279296875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HbbvsQCD": { + "name": "FatJet_particleNet_HbbvsQCD", + "doc": "ParticleNet tagger H(->bb) vs QCD discriminator", + "tot": 3618.5927734375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_HccvsQCD": { + "name": "FatJet_particleNet_HccvsQCD", + "doc": "ParticleNet tagger H(->cc) vs QCD discriminator", + "tot": 3566.5966796875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_QCD": { + "name": "FatJet_particleNet_QCD", + "doc": "ParticleNet tagger QCD(bb,cc,b,c,others) sum", + "tot": 3027.734375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_TvsQCD": { + "name": "FatJet_particleNet_TvsQCD", + "doc": "ParticleNet tagger top vs QCD discriminator", + "tot": 3674.1767578125, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_WvsQCD": { + "name": "FatJet_particleNet_WvsQCD", + "doc": "ParticleNet tagger W vs QCD discriminator", + "tot": 3529.4033203125, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_ZvsQCD": { + "name": "FatJet_particleNet_ZvsQCD", + "doc": "ParticleNet tagger Z vs QCD discriminator", + "tot": 3540.3564453125, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_particleNet_mass": { + "name": "FatJet_particleNet_mass", + "doc": "ParticleNet mass regression", + "tot": 3373.6240234375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_phi": { + "name": "FatJet_phi", + "doc": "phi", + "tot": 4051.8125, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_pt": { + "name": "FatJet_pt", + "doc": "pt", + "tot": 3052.4775390625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_rawFactor": { + "name": "FatJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 2280.056640625, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau1": { + "name": "FatJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 3338.1123046875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau2": { + "name": "FatJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 3331.2490234375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau3": { + "name": "FatJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 3334.9365234375, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_tau4": { + "name": "FatJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 3335.6279296875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_lsf3": { + "name": "FatJet_lsf3", + "doc": "Lepton Subjet Fraction (3 subjets)", + "tot": 2148.1513671875, + "entries": 1302609.0, + "single": false, + "kind": "Float_t", + "counter": "nFatJet" + }, + "FatJet_jetId": { + "name": "FatJet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 1019.013671875, + "entries": 1302609.0, + "single": false, + "kind": "Int_t", + "counter": "nFatJet" + }, + "FatJet_subJetIdx1": { + "name": "FatJet_subJetIdx1", + "doc": "index of first subjet", + "tot": 1329.1259765625, + "entries": 1302609.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_subJetIdx2": { + "name": "FatJet_subJetIdx2", + "doc": "index of second subjet", + "tot": 1327.4423828125, + "entries": 1302609.0, + "single": false, + "kind": "Int_t(index to Subjet)", + "counter": "nFatJet" + }, + "FatJet_electronIdx3SJ": { + "name": "FatJet_electronIdx3SJ", + "doc": "index of electron matched to jet", + "tot": 1223.3564453125, + "entries": 1302609.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nFatJet" + }, + "FatJet_muonIdx3SJ": { + "name": "FatJet_muonIdx3SJ", + "doc": "index of muon matched to jet", + "tot": 1199.6064453125, + "entries": 1302609.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFatJet" + }, + "FatJet_nConstituents": { + "name": "FatJet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 1835.373046875, + "entries": 1302609.0, + "single": false, + "kind": "UChar_t", + "counter": "nFatJet" + }, + "nFsrPhoton": { + "name": "nFsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "tot": 144.046875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "FsrPhoton_dROverEt2": { + "name": "FsrPhoton_dROverEt2", + "doc": "deltaR to associated muon divided by photon et2", + "tot": 325.8466796875, + "entries": 34606.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_eta": { + "name": "FsrPhoton_eta", + "doc": "eta", + "tot": 294.9033203125, + "entries": 34606.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_phi": { + "name": "FsrPhoton_phi", + "doc": "phi", + "tot": 294.7041015625, + "entries": 34606.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_pt": { + "name": "FsrPhoton_pt", + "doc": "pt", + "tot": 281.419921875, + "entries": 34606.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_relIso03": { + "name": "FsrPhoton_relIso03", + "doc": "relative isolation in a 0.3 cone without CHS", + "tot": 315.90625, + "entries": 34606.0, + "single": false, + "kind": "Float_t", + "counter": "nFsrPhoton" + }, + "FsrPhoton_muonIdx": { + "name": "FsrPhoton_muonIdx", + "doc": "index of associated muon", + "tot": 195.2587890625, + "entries": 34606.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nFsrPhoton" + }, + "nIsoTrack": { + "name": "nIsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "tot": 884.451171875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "IsoTrack_dxy": { + "name": "IsoTrack_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 10078.16015625, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_dz": { + "name": "IsoTrack_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 9924.515625, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_eta": { + "name": "IsoTrack_eta", + "doc": "eta", + "tot": 10579.296875, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_all": { + "name": "IsoTrack_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 7899.9296875, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pfRelIso03_chg": { + "name": "IsoTrack_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 6333.4609375, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_phi": { + "name": "IsoTrack_phi", + "doc": "phi", + "tot": 10620.609375, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pt": { + "name": "IsoTrack_pt", + "doc": "pt", + "tot": 8649.59375, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_all": { + "name": "IsoTrack_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 7348.7421875, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_miniPFRelIso_chg": { + "name": "IsoTrack_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 4575.46875, + "entries": 3964509.0, + "single": false, + "kind": "Float_t", + "counter": "nIsoTrack" + }, + "IsoTrack_charge": { + "name": "IsoTrack_charge", + "doc": "electric charge", + "tot": 2303.2421875, + "entries": 3964509.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_fromPV": { + "name": "IsoTrack_fromPV", + "doc": "isolated track comes from PV", + "tot": 2450.55859375, + "entries": 3964509.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_pdgId": { + "name": "IsoTrack_pdgId", + "doc": "PDG id of PF cand", + "tot": 2378.1875, + "entries": 3964509.0, + "single": false, + "kind": "Int_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isHighPurityTrack": { + "name": "IsoTrack_isHighPurityTrack", + "doc": "track is high purity", + "tot": 1884.921875, + "entries": 3964509.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isPFcand": { + "name": "IsoTrack_isPFcand", + "doc": "if isolated track is a PF candidate", + "tot": 1307.2822265625, + "entries": 3964509.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "IsoTrack_isFromLostTrack": { + "name": "IsoTrack_isFromLostTrack", + "doc": "if isolated track comes from a lost track", + "tot": 1784.103515625, + "entries": 3964509.0, + "single": false, + "kind": "Bool_t", + "counter": "nIsoTrack" + }, + "nJet": { + "name": "nJet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "tot": 1111.6015625, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Jet_area": { + "name": "Jet_area", + "doc": "jet catchment area, for JECs", + "tot": 9967.044921875, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagCSVV2": { + "name": "Jet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 19950.5537109375, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepB": { + "name": "Jet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 18961.7451171875, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvB": { + "name": "Jet_btagDeepCvB", + "doc": "DeepCSV c vs b+bb discriminator", + "tot": 17222.3525390625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepCvL": { + "name": "Jet_btagDeepCvL", + "doc": "DeepCSV c vs udsg discriminator", + "tot": 17912.0283203125, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavB": { + "name": "Jet_btagDeepFlavB", + "doc": "DeepJet b+bb+lepb tag discriminator", + "tot": 24924.3232421875, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvB": { + "name": "Jet_btagDeepFlavCvB", + "doc": "DeepJet c vs b+bb+lepb discriminator", + "tot": 20434.5478515625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavCvL": { + "name": "Jet_btagDeepFlavCvL", + "doc": "DeepJet c vs uds+g discriminator", + "tot": 22925.6806640625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_btagDeepFlavQG": { + "name": "Jet_btagDeepFlavQG", + "doc": "DeepJet g vs uds discriminator", + "tot": 22156.12890625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chEmEF": { + "name": "Jet_chEmEF", + "doc": "charged Electromagnetic Energy Fraction", + "tot": 4295.5625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chFPV0EF": { + "name": "Jet_chFPV0EF", + "doc": "charged fromPV==0 Energy Fraction (energy excluded from CHS jets). Previously called betastar.", + "tot": 16040.611328125, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_chHEF": { + "name": "Jet_chHEF", + "doc": "charged Hadron Energy Fraction", + "tot": 15243.6005859375, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_eta": { + "name": "Jet_eta", + "doc": "eta", + "tot": 29919.5830078125, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaEtaEta": { + "name": "Jet_hfsigmaEtaEta", + "doc": "sigmaEtaEta for HF jets (noise discriminating variable)", + "tot": 5006.6240234375, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_hfsigmaPhiPhi": { + "name": "Jet_hfsigmaPhiPhi", + "doc": "sigmaPhiPhi for HF jets (noise discriminating variable)", + "tot": 5004.5380859375, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_mass": { + "name": "Jet_mass", + "doc": "mass", + "tot": 23023.021484375, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muEF": { + "name": "Jet_muEF", + "doc": "muon Energy Fraction", + "tot": 4361.853515625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_muonSubtrFactor": { + "name": "Jet_muonSubtrFactor", + "doc": "1-(muon-subtracted raw pt)/(raw pt)", + "tot": 19161.9970703125, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neEmEF": { + "name": "Jet_neEmEF", + "doc": "neutral Electromagnetic Energy Fraction", + "tot": 17296.8984375, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_neHEF": { + "name": "Jet_neHEF", + "doc": "neutral Hadron Energy Fraction", + "tot": 16759.6435546875, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_phi": { + "name": "Jet_phi", + "doc": "phi", + "tot": 29428.8798828125, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_pt": { + "name": "Jet_pt", + "doc": "pt", + "tot": 23050.5078125, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_puIdDisc": { + "name": "Jet_puIdDisc", + "doc": "Pileup ID discriminant with 106X (2016) training", + "tot": 21808.720703125, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_qgl": { + "name": "Jet_qgl", + "doc": "Quark vs Gluon likelihood discriminator", + "tot": 17564.6728515625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_rawFactor": { + "name": "Jet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 18736.3818359375, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegCorr": { + "name": "Jet_bRegCorr", + "doc": "pt correction for b-jet energy regression", + "tot": 18884.138671875, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_bRegRes": { + "name": "Jet_bRegRes", + "doc": "res on pt corrected with b-jet regression", + "tot": 15410.6455078125, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegCorr": { + "name": "Jet_cRegCorr", + "doc": "pt correction for c-jet energy regression", + "tot": 18746.775390625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_cRegRes": { + "name": "Jet_cRegRes", + "doc": "res on pt corrected with c-jet regression", + "tot": 15500.6494140625, + "entries": 12806533.0, + "single": false, + "kind": "Float_t", + "counter": "nJet" + }, + "Jet_electronIdx1": { + "name": "Jet_electronIdx1", + "doc": "index of first matching electron", + "tot": 3554.501953125, + "entries": 12806533.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_electronIdx2": { + "name": "Jet_electronIdx2", + "doc": "index of second matching electron", + "tot": 2308.123046875, + "entries": 12806533.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nJet" + }, + "Jet_hfadjacentEtaStripsSize": { + "name": "Jet_hfadjacentEtaStripsSize", + "doc": "eta size of the strips next to the central tower strip in HF (noise discriminating variable) ", + "tot": 2356.5205078125, + "entries": 12806533.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_hfcentralEtaStripSize": { + "name": "Jet_hfcentralEtaStripSize", + "doc": "eta size of the central tower strip in HF (noise discriminating variable) ", + "tot": 2902.1240234375, + "entries": 12806533.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_jetId": { + "name": "Jet_jetId", + "doc": "Jet ID flags bit1 is loose (always false in 2017 since it does not exist), bit2 is tight, bit3 is tightLepVeto", + "tot": 3198.4755859375, + "entries": 12806533.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_muonIdx1": { + "name": "Jet_muonIdx1", + "doc": "index of first matching muon", + "tot": 3330.373046875, + "entries": 12806533.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_muonIdx2": { + "name": "Jet_muonIdx2", + "doc": "index of second matching muon", + "tot": 2408.556640625, + "entries": 12806533.0, + "single": false, + "kind": "Int_t(index to Muon)", + "counter": "nJet" + }, + "Jet_nElectrons": { + "name": "Jet_nElectrons", + "doc": "number of electrons in the jet", + "tot": 3474.125, + "entries": 12806533.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nMuons": { + "name": "Jet_nMuons", + "doc": "number of muons in the jet", + "tot": 3286.92578125, + "entries": 12806533.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_puId": { + "name": "Jet_puId", + "doc": "Pileup ID flags with 106X (2016) training", + "tot": 5312.740234375, + "entries": 12806533.0, + "single": false, + "kind": "Int_t", + "counter": "nJet" + }, + "Jet_nConstituents": { + "name": "Jet_nConstituents", + "doc": "Number of particles in the jet", + "tot": 9513.3955078125, + "entries": 12806533.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "L1PreFiringWeight_Dn": { + "name": "L1PreFiringWeight_Dn", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "tot": 2171.57421875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Dn": { + "name": "L1PreFiringWeight_ECAL_Dn", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), down var.", + "tot": 1310.939453125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Nom": { + "name": "L1PreFiringWeight_ECAL_Nom", + "doc": "ECAL L1 pre-firing event correction weight (1-probability)", + "tot": 1326.8125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_ECAL_Up": { + "name": "L1PreFiringWeight_ECAL_Up", + "doc": "ECAL L1 pre-firing event correction weight (1-probability), up var.", + "tot": 1338.080078125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_Nom": { + "name": "L1PreFiringWeight_Muon_Nom", + "doc": "Muon L1 pre-firing event correction weight (1-probability)", + "tot": 1399.86328125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatDn": { + "name": "L1PreFiringWeight_Muon_StatDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. stat.", + "tot": 1172.580078125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_StatUp": { + "name": "L1PreFiringWeight_Muon_StatUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. stat.", + "tot": 1420.154296875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystDn": { + "name": "L1PreFiringWeight_Muon_SystDn", + "doc": "Muon L1 pre-firing event correction weight (1-probability), down var. syst.", + "tot": 1388.107421875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Muon_SystUp": { + "name": "L1PreFiringWeight_Muon_SystUp", + "doc": "Muon L1 pre-firing event correction weight (1-probability), up var. syst.", + "tot": 1416.412109375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Nom": { + "name": "L1PreFiringWeight_Nom", + "doc": "L1 pre-firing event correction weight (1-probability)", + "tot": 2399.384765625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "L1PreFiringWeight_Up": { + "name": "L1PreFiringWeight_Up", + "doc": "L1 pre-firing event correction weight (1-probability), up var.", + "tot": 2430.97265625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nLowPtElectron": { + "name": "nLowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "tot": 547.19140625, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "LowPtElectron_ID": { + "name": "LowPtElectron_ID", + "doc": "New ID, BDT (raw) score", + "tot": 4680.205078125, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVtxRadius": { + "name": "LowPtElectron_convVtxRadius", + "doc": "conversion vertex radius (cm)", + "tot": 1336.3349609375, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_deltaEtaSC": { + "name": "LowPtElectron_deltaEtaSC", + "doc": "delta eta (SC,ele) with sign", + "tot": 3202.080078125, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxy": { + "name": "LowPtElectron_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3225.0947265625, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dxyErr": { + "name": "LowPtElectron_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2313.142578125, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dz": { + "name": "LowPtElectron_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3303.345703125, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_dzErr": { + "name": "LowPtElectron_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2260.3076171875, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eInvMinusPInv": { + "name": "LowPtElectron_eInvMinusPInv", + "doc": "1/E_SC - 1/p_trk", + "tot": 3175.5615234375, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_embeddedID": { + "name": "LowPtElectron_embeddedID", + "doc": "ID, BDT (raw) score", + "tot": 4468.216796875, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_energyErr": { + "name": "LowPtElectron_energyErr", + "doc": "energy error of the cluster-track combination", + "tot": 2454.3701171875, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_eta": { + "name": "LowPtElectron_eta", + "doc": "eta", + "tot": 3447.8837890625, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_hoe": { + "name": "LowPtElectron_hoe", + "doc": "H over E", + "tot": 2189.0322265625, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_mass": { + "name": "LowPtElectron_mass", + "doc": "mass", + "tot": 3179.7421875, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_all": { + "name": "LowPtElectron_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 3773.7890625, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_miniPFRelIso_chg": { + "name": "LowPtElectron_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3134.1484375, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_phi": { + "name": "LowPtElectron_phi", + "doc": "phi", + "tot": 3429.2001953125, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pt": { + "name": "LowPtElectron_pt", + "doc": "pt", + "tot": 4635.345703125, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_ptbiased": { + "name": "LowPtElectron_ptbiased", + "doc": "ElectronSeed, pT- and dxy- dependent BDT (raw) score", + "tot": 4198.87890625, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_r9": { + "name": "LowPtElectron_r9", + "doc": "R9 of the SC, calculated with full 5x5 region", + "tot": 3039.509765625, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_scEtOverPt": { + "name": "LowPtElectron_scEtOverPt", + "doc": "(SC energy)/pt-1", + "tot": 2718.072265625, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_sieie": { + "name": "LowPtElectron_sieie", + "doc": "sigma_IetaIeta of the SC, calculated with full 5x5 region", + "tot": 2502.0537109375, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_unbiased": { + "name": "LowPtElectron_unbiased", + "doc": "ElectronSeed, pT- and dxy- agnostic BDT (raw) score", + "tot": 4293.859375, + "entries": 1046416.0, + "single": false, + "kind": "Float_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_charge": { + "name": "LowPtElectron_charge", + "doc": "electric charge", + "tot": 1134.208984375, + "entries": 1046416.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convWP": { + "name": "LowPtElectron_convWP", + "doc": "conversion flag bit map: 1=Veto, 2=Loose, 3=Tight", + "tot": 1040.798828125, + "entries": 1046416.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_pdgId": { + "name": "LowPtElectron_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1133.1123046875, + "entries": 1046416.0, + "single": false, + "kind": "Int_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_convVeto": { + "name": "LowPtElectron_convVeto", + "doc": "pass conversion veto", + "tot": 930.7890625, + "entries": 1046416.0, + "single": false, + "kind": "Bool_t", + "counter": "nLowPtElectron" + }, + "LowPtElectron_lostHits": { + "name": "LowPtElectron_lostHits", + "doc": "number of missing inner hits", + "tot": 1049.10546875, + "entries": 1046416.0, + "single": false, + "kind": "UChar_t", + "counter": "nLowPtElectron" + }, + "MET_MetUnclustEnUpDeltaX": { + "name": "MET_MetUnclustEnUpDeltaX", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "tot": 4246.2265625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_MetUnclustEnUpDeltaY": { + "name": "MET_MetUnclustEnUpDeltaY", + "doc": "Delta (METy_mod-METy) Unclustered Energy Up", + "tot": 4243.14453125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXX": { + "name": "MET_covXX", + "doc": "xx element of met covariance matrix", + "tot": 2869.884765625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covXY": { + "name": "MET_covXY", + "doc": "xy element of met covariance matrix", + "tot": 3619.939453125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_covYY": { + "name": "MET_covYY", + "doc": "yy element of met covariance matrix", + "tot": 2873.556640625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_phi": { + "name": "MET_phi", + "doc": "phi", + "tot": 4911.740234375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_pt": { + "name": "MET_pt", + "doc": "pt", + "tot": 7496.1015625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_significance": { + "name": "MET_significance", + "doc": "MET significance", + "tot": 4066.0625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumEt": { + "name": "MET_sumEt", + "doc": "scalar sum of Et", + "tot": 3368.720703125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "MET_sumPtUnclustered": { + "name": "MET_sumPtUnclustered", + "doc": "sumPt used for MET significance", + "tot": 3348.07421875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nProton_multiRP": { + "name": "nProton_multiRP", + "doc": "bon", + "tot": 378.208984375, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_multiRP_t": { + "name": "Proton_multiRP_t", + "doc": "Mandelstam variable t", + "tot": 1742.025390625, + "entries": 474325.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaX": { + "name": "Proton_multiRP_thetaX", + "doc": "theta x", + "tot": 1852.1962890625, + "entries": 474325.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_thetaY": { + "name": "Proton_multiRP_thetaY", + "doc": "theta y", + "tot": 1853.9970703125, + "entries": 474325.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_time": { + "name": "Proton_multiRP_time", + "doc": "time", + "tot": 652.6865234375, + "entries": 474325.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_timeUnc": { + "name": "Proton_multiRP_timeUnc", + "doc": "time uncertainty", + "tot": 652.7421875, + "entries": 474325.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_xi": { + "name": "Proton_multiRP_xi", + "doc": "xi or dp/p", + "tot": 1586.4150390625, + "entries": 474325.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_multiRP" + }, + "Proton_multiRP_arm": { + "name": "Proton_multiRP_arm", + "doc": "0 = sector45, 1 = sector56", + "tot": 650.46875, + "entries": 474325.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_multiRP" + }, + "nMuon": { + "name": "nMuon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "tot": 578.587890625, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Muon_dxy": { + "name": "Muon_dxy", + "doc": "dxy (with sign) wrt first PV, in cm", + "tot": 3623.958984375, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxyErr": { + "name": "Muon_dxyErr", + "doc": "dxy uncertainty, in cm", + "tot": 2417.5224609375, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dxybs": { + "name": "Muon_dxybs", + "doc": "dxy (with sign) wrt the beam spot, in cm", + "tot": 3619.28515625, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dz": { + "name": "Muon_dz", + "doc": "dz (with sign) wrt first PV, in cm", + "tot": 3658.2880859375, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_dzErr": { + "name": "Muon_dzErr", + "doc": "dz uncertainty, in cm", + "tot": 2477.296875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_eta": { + "name": "Muon_eta", + "doc": "eta", + "tot": 3801.810546875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ip3d": { + "name": "Muon_ip3d", + "doc": "3D impact parameter wrt first PV, in cm", + "tot": 3488.4580078125, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetPtRelv2": { + "name": "Muon_jetPtRelv2", + "doc": "Relative momentum of the lepton with respect to the closest jet after subtracting the lepton", + "tot": 2689.4169921875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_jetRelIso": { + "name": "Muon_jetRelIso", + "doc": "Relative isolation in matched jet (1/ptRatio-1, pfRelIso04_all if no matched jet)", + "tot": 2983.90234375, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mass": { + "name": "Muon_mass", + "doc": "mass", + "tot": 1201.9580078125, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_all": { + "name": "Muon_miniPFRelIso_all", + "doc": "mini PF relative isolation, total (with scaled rho*EA PU corrections)", + "tot": 4382.4931640625, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_miniPFRelIso_chg": { + "name": "Muon_miniPFRelIso_chg", + "doc": "mini PF relative isolation, charged component", + "tot": 3625.5166015625, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_all": { + "name": "Muon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (deltaBeta corrections)", + "tot": 4620.1826171875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso03_chg": { + "name": "Muon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component", + "tot": 4157.2763671875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pfRelIso04_all": { + "name": "Muon_pfRelIso04_all", + "doc": "PF relative isolation dR=0.4, total (deltaBeta corrections)", + "tot": 4839.1748046875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_phi": { + "name": "Muon_phi", + "doc": "phi", + "tot": 3776.833984375, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_pt": { + "name": "Muon_pt", + "doc": "pt", + "tot": 5141.2998046875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_ptErr": { + "name": "Muon_ptErr", + "doc": "ptError of the muon track", + "tot": 2656.67578125, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_segmentComp": { + "name": "Muon_segmentComp", + "doc": "muon segment compatibility", + "tot": 3361.201171875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_sip3d": { + "name": "Muon_sip3d", + "doc": "3D impact parameter significance wrt first PV", + "tot": 3413.9140625, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_softMva": { + "name": "Muon_softMva", + "doc": "soft MVA ID score", + "tot": 1949.794921875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tkRelIso": { + "name": "Muon_tkRelIso", + "doc": "Tracker-based relative isolation dR=0.3 for highPt, trkIso/tunePpt", + "tot": 2422.6962890625, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_tunepRelPt": { + "name": "Muon_tunepRelPt", + "doc": "TuneP relative pt, tunePpt/pt", + "tot": 1155.1630859375, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaLowPt": { + "name": "Muon_mvaLowPt", + "doc": "Low pt muon ID score", + "tot": 3087.5986328125, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_mvaTTH": { + "name": "Muon_mvaTTH", + "doc": "TTH MVA lepton ID score", + "tot": 3207.3701171875, + "entries": 1187435.0, + "single": false, + "kind": "Float_t", + "counter": "nMuon" + }, + "Muon_charge": { + "name": "Muon_charge", + "doc": "electric charge", + "tot": 1196.4716796875, + "entries": 1187435.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_jetIdx": { + "name": "Muon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1478.8662109375, + "entries": 1187435.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nMuon" + }, + "Muon_nStations": { + "name": "Muon_nStations", + "doc": "number of matched stations with default arbitration (segment & track)", + "tot": 1440.171875, + "entries": 1187435.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_nTrackerLayers": { + "name": "Muon_nTrackerLayers", + "doc": "number of layers in the tracker", + "tot": 1645.1396484375, + "entries": 1187435.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_pdgId": { + "name": "Muon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1198.15234375, + "entries": 1187435.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_tightCharge": { + "name": "Muon_tightCharge", + "doc": "Tight charge criterion using pterr/pt of muonBestTrack (0:fail, 2:pass)", + "tot": 1051.087890625, + "entries": 1187435.0, + "single": false, + "kind": "Int_t", + "counter": "nMuon" + }, + "Muon_fsrPhotonIdx": { + "name": "Muon_fsrPhotonIdx", + "doc": "Index of the associated FSR photon", + "tot": 1046.2470703125, + "entries": 1187435.0, + "single": false, + "kind": "Int_t(index to Fsrphoton)", + "counter": "nMuon" + }, + "Muon_highPtId": { + "name": "Muon_highPtId", + "doc": "high-pT cut-based ID (1 = tracker high pT, 2 = global high pT, which includes tracker high pT)", + "tot": 1107.2392578125, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_highPurity": { + "name": "Muon_highPurity", + "doc": "inner track is high purity", + "tot": 1012.6552734375, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_inTimeMuon": { + "name": "Muon_inTimeMuon", + "doc": "inTimeMuon ID", + "tot": 955.7646484375, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isGlobal": { + "name": "Muon_isGlobal", + "doc": "muon is global muon", + "tot": 1077.4619140625, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isPFcand": { + "name": "Muon_isPFcand", + "doc": "muon is PF candidate", + "tot": 1079.9462890625, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isStandalone": { + "name": "Muon_isStandalone", + "doc": "muon is a standalone muon", + "tot": 1070.6494140625, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_isTracker": { + "name": "Muon_isTracker", + "doc": "muon is tracker muon", + "tot": 1043.76953125, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_jetNDauCharged": { + "name": "Muon_jetNDauCharged", + "doc": "number of charged daughters of the closest jet", + "tot": 1377.5302734375, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_looseId": { + "name": "Muon_looseId", + "doc": "muon is loose muon", + "tot": 1079.486328125, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumId": { + "name": "Muon_mediumId", + "doc": "cut-based ID, medium WP", + "tot": 1082.0947265625, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_mediumPromptId": { + "name": "Muon_mediumPromptId", + "doc": "cut-based ID, medium prompt WP", + "tot": 1074.5810546875, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_miniIsoId": { + "name": "Muon_miniIsoId", + "doc": "MiniIso ID from miniAOD selector (1=MiniIsoLoose, 2=MiniIsoMedium, 3=MiniIsoTight, 4=MiniIsoVeryTight)", + "tot": 1238.6875, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_multiIsoId": { + "name": "Muon_multiIsoId", + "doc": "MultiIsoId from miniAOD selector (1=MultiIsoLoose, 2=MultiIsoMedium)", + "tot": 1071.9169921875, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaId": { + "name": "Muon_mvaId", + "doc": "Mva ID from miniAOD selector (1=MvaLoose, 2=MvaMedium, 3=MvaTight, 4=MvaVTight, 5=MvaVVTight)", + "tot": 1101.3046875, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_mvaLowPtId": { + "name": "Muon_mvaLowPtId", + "doc": "Low Pt Mva ID from miniAOD selector (1=LowPtMvaLoose, 2=LowPtMvaMedium)", + "tot": 877.5615234375, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_pfIsoId": { + "name": "Muon_pfIsoId", + "doc": "PFIso ID from miniAOD selector (1=PFIsoVeryLoose, 2=PFIsoLoose, 3=PFIsoMedium, 4=PFIsoTight, 5=PFIsoVeryTight, 6=PFIsoVeryVeryTight)", + "tot": 1260.982421875, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_puppiIsoId": { + "name": "Muon_puppiIsoId", + "doc": "PuppiIsoId from miniAOD selector (1=Loose, 2=Medium, 3=Tight)", + "tot": 1169.6787109375, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_softId": { + "name": "Muon_softId", + "doc": "soft cut-based ID", + "tot": 1071.1123046875, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_softMvaId": { + "name": "Muon_softMvaId", + "doc": "soft MVA ID", + "tot": 1071.109375, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tightId": { + "name": "Muon_tightId", + "doc": "cut-based ID, tight WP", + "tot": 1074.876953125, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "Muon_tkIsoId": { + "name": "Muon_tkIsoId", + "doc": "TkIso ID (1=TkIsoLoose, 2=TkIsoTight)", + "tot": 1134.669921875, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Muon_triggerIdLoose": { + "name": "Muon_triggerIdLoose", + "doc": "TriggerIdLoose ID", + "tot": 1079.1826171875, + "entries": 1187435.0, + "single": false, + "kind": "Bool_t", + "counter": "nMuon" + }, + "nPhoton": { + "name": "nPhoton", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "tot": 665.513671875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Photon_dEscaleDown": { + "name": "Photon_dEscaleDown", + "doc": "ecal energy scale shifted 1 sigma down (adding gain/stat/syst in quadrature)", + "tot": 3776.01171875, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEscaleUp": { + "name": "Photon_dEscaleUp", + "doc": "ecal energy scale shifted 1 sigma up (adding gain/stat/syst in quadrature)", + "tot": 3777.650390625, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaDown": { + "name": "Photon_dEsigmaDown", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1194.5234375, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_dEsigmaUp": { + "name": "Photon_dEsigmaUp", + "doc": "ecal energy smearing value shifted 1 sigma up", + "tot": 1192.408203125, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eCorr": { + "name": "Photon_eCorr", + "doc": "ratio of the calibrated energy/miniaod energy", + "tot": 2533.431640625, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_energyErr": { + "name": "Photon_energyErr", + "doc": "energy error of the cluster from regression", + "tot": 3561.802734375, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_eta": { + "name": "Photon_eta", + "doc": "eta", + "tot": 5238.9140625, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_hoe": { + "name": "Photon_hoe", + "doc": "H over E", + "tot": 3584.59765625, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mass": { + "name": "Photon_mass", + "doc": "mass", + "tot": 3228.3388671875, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID": { + "name": "Photon_mvaID", + "doc": "MVA ID score, Fall17V2", + "tot": 3594.423828125, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_mvaID_Fall17V1p1": { + "name": "Photon_mvaID_Fall17V1p1", + "doc": "MVA ID score, Fall17V1p1", + "tot": 3743.4951171875, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_all": { + "name": "Photon_pfRelIso03_all", + "doc": "PF relative isolation dR=0.3, total (with rho*EA PU corrections)", + "tot": 7118.8330078125, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pfRelIso03_chg": { + "name": "Photon_pfRelIso03_chg", + "doc": "PF relative isolation dR=0.3, charged component (with rho*EA PU corrections)", + "tot": 6534.6494140625, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_phi": { + "name": "Photon_phi", + "doc": "phi", + "tot": 5214.9296875, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_pt": { + "name": "Photon_pt", + "doc": "p_{T}", + "tot": 7168.8447265625, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_r9": { + "name": "Photon_r9", + "doc": "R9 of the supercluster, calculated with full 5x5 region", + "tot": 3994.1806640625, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_sieie": { + "name": "Photon_sieie", + "doc": "sigma_IetaIeta of the supercluster, calculated with full 5x5 region", + "tot": 4112.419921875, + "entries": 1723824.0, + "single": false, + "kind": "Float_t", + "counter": "nPhoton" + }, + "Photon_charge": { + "name": "Photon_charge", + "doc": "electric charge", + "tot": 1189.9072265625, + "entries": 1723824.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased": { + "name": "Photon_cutBased", + "doc": "cut-based ID bitmap, Fall17V2, (0:fail, 1:loose, 2:medium, 3:tight)", + "tot": 1432.8779296875, + "entries": 1723824.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_cutBased_Fall17V1Bitmap": { + "name": "Photon_cutBased_Fall17V1Bitmap", + "doc": "cut-based ID bitmap, Fall17V1, 2^(0:loose, 1:medium, 2:tight).", + "tot": 1438.92578125, + "entries": 1723824.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronIdx": { + "name": "Photon_electronIdx", + "doc": "index of the associated electron (-1 if none)", + "tot": 1588.76171875, + "entries": 1723824.0, + "single": false, + "kind": "Int_t(index to Electron)", + "counter": "nPhoton" + }, + "Photon_jetIdx": { + "name": "Photon_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 1828.0439453125, + "entries": 1723824.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nPhoton" + }, + "Photon_pdgId": { + "name": "Photon_pdgId", + "doc": "PDG code assigned by the event reconstruction (not by MC truth)", + "tot": 1190.052734375, + "entries": 1723824.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_vidNestedWPBitmap": { + "name": "Photon_vidNestedWPBitmap", + "doc": "Fall17V2 VID compressed bitmap (MinPtCut,PhoSCEtaMultiRangeCut,PhoSingleTowerHadOverEmCut,PhoFull5x5SigmaIEtaIEtaCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut,PhoGenericRhoPtScaledCut), 2 bits per cut", + "tot": 2883.259765625, + "entries": 1723824.0, + "single": false, + "kind": "Int_t", + "counter": "nPhoton" + }, + "Photon_electronVeto": { + "name": "Photon_electronVeto", + "doc": "pass electron veto", + "tot": 1311.6279296875, + "entries": 1723824.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEB": { + "name": "Photon_isScEtaEB", + "doc": "is supercluster eta within barrel acceptance", + "tot": 1292.783203125, + "entries": 1723824.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_isScEtaEE": { + "name": "Photon_isScEtaEE", + "doc": "is supercluster eta within endcap acceptance", + "tot": 1272.412109375, + "entries": 1723824.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP80": { + "name": "Photon_mvaID_WP80", + "doc": "MVA ID WP80, Fall17V2", + "tot": 1188.2587890625, + "entries": 1723824.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_mvaID_WP90": { + "name": "Photon_mvaID_WP90", + "doc": "MVA ID WP90, Fall17V2", + "tot": 1207.3525390625, + "entries": 1723824.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_pixelSeed": { + "name": "Photon_pixelSeed", + "doc": "has pixel seed", + "tot": 1313.193359375, + "entries": 1723824.0, + "single": false, + "kind": "Bool_t", + "counter": "nPhoton" + }, + "Photon_seedGain": { + "name": "Photon_seedGain", + "doc": "Gain of the seed crystal", + "tot": 1071.7880859375, + "entries": 1723824.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "nPPSLocalTrack": { + "name": "nPPSLocalTrack", + "doc": "ppsLocalTrack variables", + "tot": 614.94921875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "PPSLocalTrack_x": { + "name": "PPSLocalTrack_x", + "doc": "local track x", + "tot": 4506.5966796875, + "entries": 1583787.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_y": { + "name": "PPSLocalTrack_y", + "doc": "local track y", + "tot": 5045.2685546875, + "entries": 1583787.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_time": { + "name": "PPSLocalTrack_time", + "doc": "local track time", + "tot": 1148.26953125, + "entries": 1583787.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_timeUnc": { + "name": "PPSLocalTrack_timeUnc", + "doc": "local track time uncertainty", + "tot": 1149.6455078125, + "entries": 1583787.0, + "single": false, + "kind": "Float_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_multiRPProtonIdx": { + "name": "PPSLocalTrack_multiRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1406.71875, + "entries": 1583787.0, + "single": false, + "kind": "Int_t(index to Multirpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_singleRPProtonIdx": { + "name": "PPSLocalTrack_singleRPProtonIdx", + "doc": "local track - proton correspondence", + "tot": 1448.9833984375, + "entries": 1583787.0, + "single": false, + "kind": "Int_t(index to Singlerpproton)", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_decRPId": { + "name": "PPSLocalTrack_decRPId", + "doc": "local track detector dec id", + "tot": 1515.2236328125, + "entries": 1583787.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PPSLocalTrack_rpType": { + "name": "PPSLocalTrack_rpType", + "doc": "strip=3, pixel=4, diamond=5, timing=6", + "tot": 1149.716796875, + "entries": 1583787.0, + "single": false, + "kind": "Int_t", + "counter": "nPPSLocalTrack" + }, + "PuppiMET_phi": { + "name": "PuppiMET_phi", + "doc": "phi", + "tot": 4900.9609375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERDown": { + "name": "PuppiMET_phiJERDown", + "doc": "JER down phi", + "tot": 4066.572265625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJERUp": { + "name": "PuppiMET_phiJERUp", + "doc": "JER up phi", + "tot": 4066.029296875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESDown": { + "name": "PuppiMET_phiJESDown", + "doc": "JES down phi", + "tot": 4065.837890625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiJESUp": { + "name": "PuppiMET_phiJESUp", + "doc": "JES up phi", + "tot": 4066.087890625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredDown": { + "name": "PuppiMET_phiUnclusteredDown", + "doc": "Unclustered down phi", + "tot": 4065.861328125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_phiUnclusteredUp": { + "name": "PuppiMET_phiUnclusteredUp", + "doc": "Unclustered up phi", + "tot": 4070.310546875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_pt": { + "name": "PuppiMET_pt", + "doc": "pt", + "tot": 7520.517578125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERDown": { + "name": "PuppiMET_ptJERDown", + "doc": "JER down pt", + "tot": 3857.98828125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJERUp": { + "name": "PuppiMET_ptJERUp", + "doc": "JER up pt", + "tot": 3857.4453125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESDown": { + "name": "PuppiMET_ptJESDown", + "doc": "JES down pt", + "tot": 3861.65625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptJESUp": { + "name": "PuppiMET_ptJESUp", + "doc": "JES up pt", + "tot": 3860.7734375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredDown": { + "name": "PuppiMET_ptUnclusteredDown", + "doc": "Unclustered down pt", + "tot": 3858.73046875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_ptUnclusteredUp": { + "name": "PuppiMET_ptUnclusteredUp", + "doc": "Unclustered up pt", + "tot": 3862.32421875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PuppiMET_sumEt": { + "name": "PuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3741.14453125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_phi": { + "name": "RawMET_phi", + "doc": "phi", + "tot": 4077.5546875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_pt": { + "name": "RawMET_pt", + "doc": "pt", + "tot": 3827.009765625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawMET_sumEt": { + "name": "RawMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3360.05859375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_phi": { + "name": "RawPuppiMET_phi", + "doc": "phi", + "tot": 4062.982421875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_pt": { + "name": "RawPuppiMET_pt", + "doc": "pt", + "tot": 3870.32421875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "RawPuppiMET_sumEt": { + "name": "RawPuppiMET_sumEt", + "doc": "scalar sum of Et", + "tot": 3740.751953125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "tot": 6712.68359375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "tot": 6859.65625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "tot": 7027.9609375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "tot": 7070.986328125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "tot": 6842.986328125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nSoftActivityJet": { + "name": "nSoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "tot": 266.28515625, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SoftActivityJet_eta": { + "name": "SoftActivityJet_eta", + "doc": "eta", + "tot": 21242.96484375, + "entries": 12716604.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_phi": { + "name": "SoftActivityJet_phi", + "doc": "phi", + "tot": 20840.7734375, + "entries": 12716604.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJet_pt": { + "name": "SoftActivityJet_pt", + "doc": "pt", + "tot": 24439.640625, + "entries": 12716604.0, + "single": false, + "kind": "Float_t", + "counter": "nSoftActivityJet" + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "tot": 7506.837890625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "tot": 7499.408203125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "tot": 7525.453125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "tot": 7518.625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "tot": 854.02734375, + "entries": 2160343, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "tot": 1359.158203125, + "entries": 2160343, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "tot": 1014.478515625, + "entries": 2160343, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nProton_singleRP": { + "name": "nProton_singleRP", + "doc": "bon", + "tot": 615.4921875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Proton_singleRP_thetaY": { + "name": "Proton_singleRP_thetaY", + "doc": "th y", + "tot": 4485.0234375, + "entries": 1583787.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_xi": { + "name": "Proton_singleRP_xi", + "doc": "xi or dp/p", + "tot": 4341.578125, + "entries": 1583787.0, + "single": false, + "kind": "Float_t", + "counter": "nProton_singleRP" + }, + "Proton_singleRP_decRPId": { + "name": "Proton_singleRP_decRPId", + "doc": "Detector ID", + "tot": 1515.0107421875, + "entries": 1583787.0, + "single": false, + "kind": "Int_t", + "counter": "nProton_singleRP" + }, + "nSubJet": { + "name": "nSubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "tot": 529.169921875, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SubJet_btagCSVV2": { + "name": "SubJet_btagCSVV2", + "doc": " pfCombinedInclusiveSecondaryVertexV2 b-tag discriminator (aka CSVV2)", + "tot": 3322.017578125, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_btagDeepB": { + "name": "SubJet_btagDeepB", + "doc": "DeepCSV b+bb tag discriminator", + "tot": 3346.306640625, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_eta": { + "name": "SubJet_eta", + "doc": "eta", + "tot": 4897.734375, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_mass": { + "name": "SubJet_mass", + "doc": "mass", + "tot": 4351.9130859375, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n2b1": { + "name": "SubJet_n2b1", + "doc": "N2 with beta=1", + "tot": 3135.8818359375, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_n3b1": { + "name": "SubJet_n3b1", + "doc": "N3 with beta=1", + "tot": 2927.4560546875, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_phi": { + "name": "SubJet_phi", + "doc": "phi", + "tot": 4832.62109375, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_pt": { + "name": "SubJet_pt", + "doc": "pt", + "tot": 4123.1728515625, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_rawFactor": { + "name": "SubJet_rawFactor", + "doc": "1 - Factor to get back to raw pT", + "tot": 2668.216796875, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau1": { + "name": "SubJet_tau1", + "doc": "Nsubjettiness (1 axis)", + "tot": 3937.5068359375, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau2": { + "name": "SubJet_tau2", + "doc": "Nsubjettiness (2 axis)", + "tot": 3512.5458984375, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau3": { + "name": "SubJet_tau3", + "doc": "Nsubjettiness (3 axis)", + "tot": 3168.7646484375, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "SubJet_tau4": { + "name": "SubJet_tau4", + "doc": "Nsubjettiness (4 axis)", + "tot": 2927.8466796875, + "entries": 1776234.0, + "single": false, + "kind": "Float_t", + "counter": "nSubJet" + }, + "nTau": { + "name": "nTau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "tot": 650.18359375, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "Tau_chargedIso": { + "name": "Tau_chargedIso", + "doc": "charged isolation", + "tot": 4547.6953125, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dxy": { + "name": "Tau_dxy", + "doc": "d_{xy} of lead track with respect to PV, in cm (with sign)", + "tot": 5647.3544921875, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_dz": { + "name": "Tau_dz", + "doc": "d_{z} of lead track with respect to PV, in cm (with sign)", + "tot": 6353.90234375, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_eta": { + "name": "Tau_eta", + "doc": "eta", + "tot": 6074.5380859375, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaEta": { + "name": "Tau_leadTkDeltaEta", + "doc": "eta of the leading track, minus tau eta", + "tot": 4951.19921875, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkDeltaPhi": { + "name": "Tau_leadTkDeltaPhi", + "doc": "phi of the leading track, minus tau phi", + "tot": 4965.74609375, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_leadTkPtOverTauPt": { + "name": "Tau_leadTkPtOverTauPt", + "doc": "pt of the leading track divided by tau pt", + "tot": 4630.4033203125, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_mass": { + "name": "Tau_mass", + "doc": "mass", + "tot": 4286.033203125, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_neutralIso": { + "name": "Tau_neutralIso", + "doc": "neutral (photon) isolation", + "tot": 3625.53125, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_phi": { + "name": "Tau_phi", + "doc": "phi", + "tot": 6045.0419921875, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_photonsOutsideSignalCone": { + "name": "Tau_photonsOutsideSignalCone", + "doc": "sum of photons outside signal cone", + "tot": 3369.783203125, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_pt": { + "name": "Tau_pt", + "doc": "pt", + "tot": 8450.53125, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_puCorr": { + "name": "Tau_puCorr", + "doc": "pileup correction", + "tot": 4958.3359375, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSe": { + "name": "Tau_rawDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe raw output discriminator (deepTau2017v2p1)", + "tot": 4131.5009765625, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSjet": { + "name": "Tau_rawDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet raw output discriminator (deepTau2017v2p1)", + "tot": 4855.9365234375, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawDeepTau2017v2p1VSmu": { + "name": "Tau_rawDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu raw output discriminator (deepTau2017v2p1)", + "tot": 3374.16015625, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIso": { + "name": "Tau_rawIso", + "doc": "combined isolation (deltaBeta corrections)", + "tot": 4752.55859375, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_rawIsodR03": { + "name": "Tau_rawIsodR03", + "doc": "combined isolation (deltaBeta corrections, dR=0.3)", + "tot": 4175.65234375, + "entries": 2079791.0, + "single": false, + "kind": "Float_t", + "counter": "nTau" + }, + "Tau_charge": { + "name": "Tau_charge", + "doc": "electric charge", + "tot": 1693.96484375, + "entries": 2079791.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_decayMode": { + "name": "Tau_decayMode", + "doc": "decayMode()", + "tot": 2161.2861328125, + "entries": 2079791.0, + "single": false, + "kind": "Int_t", + "counter": "nTau" + }, + "Tau_jetIdx": { + "name": "Tau_jetIdx", + "doc": "index of the associated jet (-1 if none)", + "tot": 2026.40625, + "entries": 2079791.0, + "single": false, + "kind": "Int_t(index to Jet)", + "counter": "nTau" + }, + "Tau_idAntiEleDeadECal": { + "name": "Tau_idAntiEleDeadECal", + "doc": "Anti-electron dead-ECal discriminator", + "tot": 1231.1845703125, + "entries": 2079791.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idAntiMu": { + "name": "Tau_idAntiMu", + "doc": "Anti-muon discriminator V3: : bitmask 1 = Loose, 2 = Tight", + "tot": 1404.748046875, + "entries": 2079791.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDecayModeOldDMs": { + "name": "Tau_idDecayModeOldDMs", + "doc": "tauID('decayModeFinding')", + "tot": 1465.9033203125, + "entries": 2079791.0, + "single": false, + "kind": "Bool_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSe": { + "name": "Tau_idDeepTau2017v2p1VSe", + "doc": "byDeepTau2017v2p1VSe ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 2053.169921875, + "entries": 2079791.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSjet": { + "name": "Tau_idDeepTau2017v2p1VSjet", + "doc": "byDeepTau2017v2p1VSjet ID working points (deepTau2017v2p1): bitmask 1 = VVVLoose, 2 = VVLoose, 4 = VLoose, 8 = Loose, 16 = Medium, 32 = Tight, 64 = VTight, 128 = VVTight", + "tot": 2162.63671875, + "entries": 2079791.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "Tau_idDeepTau2017v2p1VSmu": { + "name": "Tau_idDeepTau2017v2p1VSmu", + "doc": "byDeepTau2017v2p1VSmu ID working points (deepTau2017v2p1): bitmask 1 = VLoose, 2 = Loose, 4 = Medium, 8 = Tight", + "tot": 1522.5244140625, + "entries": 2079791.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "TkMET_phi": { + "name": "TkMET_phi", + "doc": "raw track MET phi", + "tot": 4058.291015625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_pt": { + "name": "TkMET_pt", + "doc": "raw track MET pt", + "tot": 3889.19140625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "TkMET_sumEt": { + "name": "TkMET_sumEt", + "doc": "raw track scalar sum of Et", + "tot": 3547.494140625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "nTrigObj": { + "name": "nTrigObj", + "doc": "", + "tot": 1240.51953125, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "TrigObj_pt": { + "name": "TrigObj_pt", + "doc": "pt", + "tot": 30391.65625, + "entries": 14882758.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_eta": { + "name": "TrigObj_eta", + "doc": "eta", + "tot": 28470.1787109375, + "entries": 14882758.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_phi": { + "name": "TrigObj_phi", + "doc": "phi", + "tot": 27876.6826171875, + "entries": 14882758.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt": { + "name": "TrigObj_l1pt", + "doc": "pt of associated L1 seed", + "tot": 17653.662109375, + "entries": 14882758.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l1pt_2": { + "name": "TrigObj_l1pt_2", + "doc": "pt of associated secondary L1 seed", + "tot": 2200.13671875, + "entries": 14882758.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_l2pt": { + "name": "TrigObj_l2pt", + "doc": "pt of associated 'L2' seed (i.e. HLT before tracking/PF)", + "tot": 20970.599609375, + "entries": 14882758.0, + "single": false, + "kind": "Float_t", + "counter": "nTrigObj" + }, + "TrigObj_id": { + "name": "TrigObj_id", + "doc": "ID of the object: 11 = Electron (PixelMatched e/gamma), 22 = Photon (PixelMatch-vetoed e/gamma), 13 = Muon, 15 = Tau, 1 = Jet, 6 = FatJet, 2 = MET, 3 = HT, 4 = MHT", + "tot": 4886.07421875, + "entries": 14882758.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1iso": { + "name": "TrigObj_l1iso", + "doc": "iso of associated L1 seed", + "tot": 4532.0087890625, + "entries": 14882758.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_l1charge": { + "name": "TrigObj_l1charge", + "doc": "charge of associated L1 seed", + "tot": 3184.326171875, + "entries": 14882758.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "TrigObj_filterBits": { + "name": "TrigObj_filterBits", + "doc": "extra bits of associated information: 1 = CaloIdL_TrackIdL_IsoVL, 2 = 1e (WPTight), 4 = 1e (WPLoose), 8 = OverlapFilter PFTau, 16 = 2e, 32 = 1e-1mu, 64 = 1e-1tau, 128 = 3e, 256 = 2e-1mu, 512 = 1e-2mu, 1024 = 1e (32_L1DoubleEG_AND_L1SingleEGOr), 2048 = 1e (CaloIdVT_GsfTrkIdT), 4096 = 1e (PFJet), 8192 = 1e (Photon175_OR_Photon200) for Electron (PixelMatched e/gamma); 1 = TrkIsoVVL, 2 = Iso, 4 = OverlapFilter PFTau, 8 = IsoTkMu, 1024 = 1mu (Mu50) for Muon; 1 = LooseIso, 2 = Medium(Comb)Iso, 4 = VLooseIso, 8 = None, 16 = L2p5 pixel iso, 32 = OverlapFilter IsoMu, 64 = OverlapFilter IsoEle, 128 = L1-HLT matched, 256 = Dz for Tau; Jet bits: bit 0 for VBF cross-cleaned from loose iso PFTau, bit 1 for hltBTagCaloCSVp087Triple, bit 2 for hltDoubleCentralJet90, bit 3 for hltDoublePFCentralJetLooseID90, bit 4 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 5 for hltQuadCentralJet30, bit 6 for hltQuadPFCentralJetLooseID30, bit 7 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 8 for hltQuadCentralJet45, bit 9 for hltQuadPFCentralJetLooseID45, bit 10 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet bit 11 for hltBTagCaloCSVp05Double or hltBTagCaloDeepCSVp17Double, bit 12 for hltPFCentralJetLooseIDQuad30, bit 13 for hlt1PFCentralJetLooseID75, bit 14 for hlt2PFCentralJetLooseID60, bit 15 for hlt3PFCentralJetLooseID45, bit 16 for hlt4PFCentralJetLooseID40, bit 17 for hltBTagPFCSVp070Triple or hltBTagPFDeepCSVp24Triple or hltBTagPFDeepCSV4p5Triple for Jet; HT bits: bit 0 for hltL1sTripleJetVBFIorHTTIorDoubleJetCIorSingleJet, bit 1 for hltL1sQuadJetC50IorQuadJetC60IorHTT280IorHTT300IorHTT320IorTripleJet846848VBFIorTripleJet887256VBFIorTripleJet927664VBF or hltL1sQuadJetCIorTripleJetVBFIorHTT, bit 2 for hltL1sQuadJetC60IorHTT380IorHTT280QuadJetIorHTT300QuadJet or hltL1sQuadJetC50to60IorHTT280to500IorHTT250to340QuadJet, bit 3 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 4 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for HT; MHT bits: bit 0 for hltCaloQuadJet30HT300 or hltCaloQuadJet30HT320, bit 1 for hltPFCentralJetsLooseIDQuad30HT300 or hltPFCentralJetsLooseIDQuad30HT330 for MHT; ", + "tot": 6632.46484375, + "entries": 14882758.0, + "single": false, + "kind": "Int_t", + "counter": "nTrigObj" + }, + "nOtherPV": { + "name": "nOtherPV", + "doc": "", + "tot": 59.77734375, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "OtherPV_z": { + "name": "OtherPV_z", + "doc": "Z position of other primary vertices, excluding the main PV", + "tot": 11972.818359375, + "entries": 6476758.0, + "single": false, + "kind": "Float_t", + "counter": "nOtherPV" + }, + "PV_ndof": { + "name": "PV_ndof", + "doc": "main primary vertex number of degree of freedom", + "tot": 2946.466796875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_x": { + "name": "PV_x", + "doc": "main primary vertex position x coordinate", + "tot": 2547.2265625, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_y": { + "name": "PV_y", + "doc": "main primary vertex position y coordinate", + "tot": 2241.921875, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_z": { + "name": "PV_z", + "doc": "main primary vertex position z coordinate", + "tot": 5875.75, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_chi2": { + "name": "PV_chi2", + "doc": "main primary vertex reduced chi2", + "tot": 2464.521484375, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_score": { + "name": "PV_score", + "doc": "main primary vertex score, i.e. sum pt2 of clustered objects", + "tot": 3315.1953125, + "entries": 2160343, + "single": true, + "kind": "Float_t", + "counter": "" + }, + "PV_npvs": { + "name": "PV_npvs", + "doc": "total number of reconstructed primary vertices", + "tot": 1451.083984375, + "entries": 2160343, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "PV_npvsGood": { + "name": "PV_npvsGood", + "doc": "number of good reconstructed primary vertices. selection:!isFake && ndof > 4 && abs(z) <= 24 && position.Rho <= 2", + "tot": 1415.373046875, + "entries": 2160343, + "single": true, + "kind": "Int_t", + "counter": "" + }, + "nSV": { + "name": "nSV", + "doc": "", + "tot": 674.083984375, + "entries": 2160343, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "SV_dlen": { + "name": "SV_dlen", + "doc": "decay length in cm", + "tot": 4253.2880859375, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dlenSig": { + "name": "SV_dlenSig", + "doc": "decay length significance", + "tot": 4108.453125, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxy": { + "name": "SV_dxy", + "doc": "2D decay length in cm", + "tot": 4244.8125, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_dxySig": { + "name": "SV_dxySig", + "doc": "2D decay length significance", + "tot": 4120.4228515625, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pAngle": { + "name": "SV_pAngle", + "doc": "pointing angle, i.e. acos(p_SV * (SV - PV)) ", + "tot": 2651.2548828125, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_charge": { + "name": "SV_charge", + "doc": "sum of the charge of the SV tracks", + "tot": 1776.9306640625, + "entries": 1650075.0, + "single": false, + "kind": "Int_t", + "counter": "nSV" + }, + "Electron_cleanmask": { + "name": "Electron_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 929.57421875, + "entries": 1268548.0, + "single": false, + "kind": "UChar_t", + "counter": "nElectron" + }, + "Jet_cleanmask": { + "name": "Jet_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 2863.3134765625, + "entries": 12806533.0, + "single": false, + "kind": "UChar_t", + "counter": "nJet" + }, + "Muon_cleanmask": { + "name": "Muon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1082.765625, + "entries": 1187435.0, + "single": false, + "kind": "UChar_t", + "counter": "nMuon" + }, + "Photon_cleanmask": { + "name": "Photon_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1040.697265625, + "entries": 1723824.0, + "single": false, + "kind": "UChar_t", + "counter": "nPhoton" + }, + "Tau_cleanmask": { + "name": "Tau_cleanmask", + "doc": "simple cleaning mask with priority to leptons", + "tot": 1135.3876953125, + "entries": 2079791.0, + "single": false, + "kind": "UChar_t", + "counter": "nTau" + }, + "SV_chi2": { + "name": "SV_chi2", + "doc": "reduced chi2, i.e. chi/ndof", + "tot": 3768.3232421875, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_eta": { + "name": "SV_eta", + "doc": "eta", + "tot": 4991.5703125, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_mass": { + "name": "SV_mass", + "doc": "mass", + "tot": 4067.2294921875, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ndof": { + "name": "SV_ndof", + "doc": "number of degrees of freedom", + "tot": 3053.9169921875, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_phi": { + "name": "SV_phi", + "doc": "phi", + "tot": 4972.76953125, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_pt": { + "name": "SV_pt", + "doc": "pt", + "tot": 4212.2470703125, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_x": { + "name": "SV_x", + "doc": "secondary vertex X position, in cm", + "tot": 4564.517578125, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_y": { + "name": "SV_y", + "doc": "secondary vertex Y position, in cm", + "tot": 4550.466796875, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_z": { + "name": "SV_z", + "doc": "secondary vertex Z position, in cm", + "tot": 5153.755859375, + "entries": 1650075.0, + "single": false, + "kind": "Float_t", + "counter": "nSV" + }, + "SV_ntracks": { + "name": "SV_ntracks", + "doc": "number of tracks", + "tot": 1403.3828125, + "entries": 1650075.0, + "single": false, + "kind": "UChar_t", + "counter": "nSV" + }, + "L1_AlwaysTrue": { + "name": "L1_AlwaysTrue", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.818359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_AND": { + "name": "L1_BRIL_TRIG0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.904296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_FstBunchInTrain": { + "name": "L1_BRIL_TRIG0_FstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_OR": { + "name": "L1_BRIL_TRIG0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BRIL_TRIG0_delayedAND": { + "name": "L1_BRIL_TRIG0_delayedAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB1": { + "name": "L1_BeamGasB1", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasB2": { + "name": "L1_BeamGasB2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasMinus": { + "name": "L1_BeamGasMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BeamGasPlus": { + "name": "L1_BeamGasPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxMinus": { + "name": "L1_BptxMinus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxOR": { + "name": "L1_BptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.732421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxPlus": { + "name": "L1_BptxPlus", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.275390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_BptxXOR": { + "name": "L1_BptxXOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.00390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorGap_BptxAND": { + "name": "L1_CastorGap_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon": { + "name": "L1_CastorHaloMuon", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.904296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHaloMuon_BptxAND": { + "name": "L1_CastorHaloMuon_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.076171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorHighJet_BptxAND": { + "name": "L1_CastorHighJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.8046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_CastorMediumJet_BptxAND": { + "name": "L1_CastorMediumJet_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.34765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG6_HTT255": { + "name": "L1_DoubleEG6_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 300.982421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_15_10": { + "name": "L1_DoubleEG_15_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 83.240234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_18_17": { + "name": "L1_DoubleEG_18_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 154.615234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_20_18": { + "name": "L1_DoubleEG_20_18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 153.416015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_10": { + "name": "L1_DoubleEG_22_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 165.404296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_12": { + "name": "L1_DoubleEG_22_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 161.544921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_22_15": { + "name": "L1_DoubleEG_22_15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 156.822265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_23_10": { + "name": "L1_DoubleEG_23_10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 265.931640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_24_17": { + "name": "L1_DoubleEG_24_17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 263.951171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleEG_25_12": { + "name": "L1_DoubleEG_25_12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 278.783203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau28er": { + "name": "L1_DoubleIsoTau28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 199.732421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau30er": { + "name": "L1_DoubleIsoTau30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 359.169921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau32er": { + "name": "L1_DoubleIsoTau32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 361.798828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau33er": { + "name": "L1_DoubleIsoTau33er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 363.896484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau34er": { + "name": "L1_DoubleIsoTau34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 365.955078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau35er": { + "name": "L1_DoubleIsoTau35er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 369.119140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleIsoTau36er": { + "name": "L1_DoubleIsoTau36er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 371.630859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet12_ForwardBackward": { + "name": "L1_DoubleJet12_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.43359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet16_ForwardBackward": { + "name": "L1_DoubleJet16_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.43359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu10": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.705078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet30_Mj30j30_400_Mu6": { + "name": "L1_DoubleJet30_Mj30j30_400_Mu6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.78515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet8_ForwardBackward": { + "name": "L1_DoubleJet8_ForwardBackward", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC100": { + "name": "L1_DoubleJetC100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 349.96875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC112": { + "name": "L1_DoubleJetC112", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 366.609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC120": { + "name": "L1_DoubleJetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 356.0546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC40": { + "name": "L1_DoubleJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC50": { + "name": "L1_DoubleJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60": { + "name": "L1_DoubleJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC60_ETM60": { + "name": "L1_DoubleJetC60_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.068359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJetC80": { + "name": "L1_DoubleJetC80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_100_30_Mj30j30_620": { + "name": "L1_DoubleJet_100_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.705078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleJet_90_30_Mj30j30_620": { + "name": "L1_DoubleJet_90_30_Mj30j30_620", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 57.91796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0": { + "name": "L1_DoubleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.06640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM40": { + "name": "L1_DoubleMu0_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 82.171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM55": { + "name": "L1_DoubleMu0_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.78515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM60": { + "name": "L1_DoubleMu0_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 63.1328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM65": { + "name": "L1_DoubleMu0_ETM65", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 81.04296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0_ETM70": { + "name": "L1_DoubleMu0_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p4_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.34375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.228515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu0er1p6_dEta_Max1p8_OS": { + "name": "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 90.5078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG14": { + "name": "L1_DoubleMu7_EG14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.208984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu7_EG7": { + "name": "L1_DoubleMu7_EG7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.02734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMuOpen": { + "name": "L1_DoubleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_0_dEta_Max1p8": { + "name": "L1_DoubleMu_10_0_dEta_Max1p8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 100.53515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_3p5": { + "name": "L1_DoubleMu_10_3p5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.17578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_10_Open": { + "name": "L1_DoubleMu_10_Open", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.447265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_11_4": { + "name": "L1_DoubleMu_11_4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.03515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_5": { + "name": "L1_DoubleMu_12_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 139.67578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_12_8": { + "name": "L1_DoubleMu_12_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 124.4375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_13_6": { + "name": "L1_DoubleMu_13_6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleMu_15_5": { + "name": "L1_DoubleMu_15_5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 138.5546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau50er": { + "name": "L1_DoubleTau50er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 388.046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_DoubleTau70er": { + "name": "L1_DoubleTau70er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 355.4921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG25er_HTT125": { + "name": "L1_EG25er_HTT125", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_EG27er_HTT200": { + "name": "L1_EG27er_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 352.80859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM100": { + "name": "L1_ETM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 277.419921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM105": { + "name": "L1_ETM105", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 263.681640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM110": { + "name": "L1_ETM110", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 249.525390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM115": { + "name": "L1_ETM115", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.728515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM120": { + "name": "L1_ETM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 220.208984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM30": { + "name": "L1_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.4609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM40": { + "name": "L1_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.4609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM50": { + "name": "L1_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.4609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM60": { + "name": "L1_ETM60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.5390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM70": { + "name": "L1_ETM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 150.98046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75": { + "name": "L1_ETM75", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 181.22265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM75_Jet60_dPhi_Min0p4": { + "name": "L1_ETM75_Jet60_dPhi_Min0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 186.015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM80": { + "name": "L1_ETM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.4921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM85": { + "name": "L1_ETM85", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 204.0234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM90": { + "name": "L1_ETM90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 231.4375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETM95": { + "name": "L1_ETM95", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 265.203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT25": { + "name": "L1_ETT25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.4609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT40_BptxAND": { + "name": "L1_ETT40_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT50_BptxAND": { + "name": "L1_ETT50_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT55_BptxAND": { + "name": "L1_ETT55_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT60_BptxAND": { + "name": "L1_ETT60_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT70_BptxAND": { + "name": "L1_ETT70_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ETT75_BptxAND": { + "name": "L1_ETT75_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchAfterTrain": { + "name": "L1_FirstBunchAfterTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.533203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_FirstBunchInTrain": { + "name": "L1_FirstBunchInTrain", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM100": { + "name": "L1_HTM100", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.732421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM120": { + "name": "L1_HTM120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.732421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM130": { + "name": "L1_HTM130", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.732421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM140": { + "name": "L1_HTM140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.732421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM150": { + "name": "L1_HTM150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.732421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM50": { + "name": "L1_HTM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.4609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM60_HTT260": { + "name": "L1_HTM60_HTT260", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM70": { + "name": "L1_HTM70", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.4609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80": { + "name": "L1_HTM80", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.4609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTM80_HTT220": { + "name": "L1_HTM80_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT120": { + "name": "L1_HTT120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.029296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT160": { + "name": "L1_HTT160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.525390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT200": { + "name": "L1_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 50.732421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT220": { + "name": "L1_HTT220", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.552734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT240": { + "name": "L1_HTT240", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.400390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT255": { + "name": "L1_HTT255", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.498046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT270": { + "name": "L1_HTT270", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 212.244140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT280": { + "name": "L1_HTT280", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 236.060546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT300": { + "name": "L1_HTT300", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 378.037109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_HTT320": { + "name": "L1_HTT320", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 370.146484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2": { + "name": "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 234.740234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2": { + "name": "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 320.623046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2": { + "name": "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 346.818359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsoEG22er_Tau20er_dEta_Min0p2": { + "name": "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.51953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_IsolatedBunch": { + "name": "L1_IsolatedBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0": { + "name": "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.30859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0": { + "name": "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 66.04296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MU20_EG15": { + "name": "L1_MU20_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 159.40625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND": { + "name": "L1_MinimumBiasHF0_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_AND_BptxAND": { + "name": "L1_MinimumBiasHF0_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR": { + "name": "L1_MinimumBiasHF0_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF0_OR_BptxAND": { + "name": "L1_MinimumBiasHF0_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND": { + "name": "L1_MinimumBiasHF1_AND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_AND_BptxAND": { + "name": "L1_MinimumBiasHF1_AND_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR": { + "name": "L1_MinimumBiasHF1_OR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_MinimumBiasHF1_OR_BptxAND": { + "name": "L1_MinimumBiasHF1_OR_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM40": { + "name": "L1_Mu0er_ETM40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu0er_ETM55": { + "name": "L1_Mu0er_ETM55", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 145.0546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM30": { + "name": "L1_Mu10er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.103515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu10er_ETM50": { + "name": "L1_Mu10er_ETM50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.580078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu12_EG10": { + "name": "L1_Mu12_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 101.4453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu14er_ETM30": { + "name": "L1_Mu14er_ETM30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 147.494140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau20er": { + "name": "L1_Mu16er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 188.748046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu16er_Tau24er": { + "name": "L1_Mu16er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.509765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_IsoTau26er": { + "name": "L1_Mu18er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 149.59375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau20er": { + "name": "L1_Mu18er_Tau20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 301.001953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu18er_Tau24er": { + "name": "L1_Mu18er_Tau24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 273.697265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG10": { + "name": "L1_Mu20_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 170.5546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_EG17": { + "name": "L1_Mu20_EG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 151.328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20_IsoEG6": { + "name": "L1_Mu20_IsoEG6", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 160.83203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu20er_IsoTau26er": { + "name": "L1_Mu20er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 223.41015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu22er_IsoTau26er": { + "name": "L1_Mu22er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_EG10": { + "name": "L1_Mu23_EG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 176.5546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu23_IsoEG10": { + "name": "L1_Mu23_IsoEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 133.416015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu25er_IsoTau26er": { + "name": "L1_Mu25er_IsoTau26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 210.140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120": { + "name": "L1_Mu3_JetC120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 136.59375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16": { + "name": "L1_Mu3_JetC16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.818359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 60.505859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60": { + "name": "L1_Mu3_JetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.818359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4": { + "name": "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 77.744140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG15": { + "name": "L1_Mu5_EG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 102.900390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG20": { + "name": "L1_Mu5_EG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 128.548828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_EG23": { + "name": "L1_Mu5_EG23", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.169921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG18": { + "name": "L1_Mu5_IsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 117.42578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu5_IsoEG20": { + "name": "L1_Mu5_IsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 159.03125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG10": { + "name": "L1_Mu6_DoubleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 121.544921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_DoubleEG17": { + "name": "L1_Mu6_DoubleEG17", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 104.052734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu6_HTT200": { + "name": "L1_Mu6_HTT200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 196.466796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_Mu8_HTT150": { + "name": "L1_Mu8_HTT150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 70.744140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_NotBptxOR": { + "name": "L1_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC36_Tau52": { + "name": "L1_QuadJetC36_Tau52", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 112.482421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC40": { + "name": "L1_QuadJetC40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 78.419921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC50": { + "name": "L1_QuadJetC50", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 211.431640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadJetC60": { + "name": "L1_QuadJetC60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 167.333984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_QuadMu0": { + "name": "L1_QuadMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.6015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG10": { + "name": "L1_SingleEG10", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.408203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG15": { + "name": "L1_SingleEG15", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.634765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG18": { + "name": "L1_SingleEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.912109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG24": { + "name": "L1_SingleEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.576171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG26": { + "name": "L1_SingleEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 61.603515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG28": { + "name": "L1_SingleEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.818359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG2_BptxAND": { + "name": "L1_SingleEG2_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG30": { + "name": "L1_SingleEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 230.759765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG32": { + "name": "L1_SingleEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 247.205078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG34": { + "name": "L1_SingleEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 340.916015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG36": { + "name": "L1_SingleEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 368.435546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG38": { + "name": "L1_SingleEG38", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 365.740234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG40": { + "name": "L1_SingleEG40", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 363.083984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG45": { + "name": "L1_SingleEG45", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 355.888671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleEG5": { + "name": "L1_SingleEG5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.68359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18": { + "name": "L1_SingleIsoEG18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG18er": { + "name": "L1_SingleIsoEG18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.17578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20": { + "name": "L1_SingleIsoEG20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG20er": { + "name": "L1_SingleIsoEG20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.17578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22": { + "name": "L1_SingleIsoEG22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG22er": { + "name": "L1_SingleIsoEG22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 93.14453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24": { + "name": "L1_SingleIsoEG24", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 92.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG24er": { + "name": "L1_SingleIsoEG24er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.6796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26": { + "name": "L1_SingleIsoEG26", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 203.33984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG26er": { + "name": "L1_SingleIsoEG26er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 226.0, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28": { + "name": "L1_SingleIsoEG28", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 225.57421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG28er": { + "name": "L1_SingleIsoEG28er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.65234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30": { + "name": "L1_SingleIsoEG30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 242.1171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG30er": { + "name": "L1_SingleIsoEG30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 334.51171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32": { + "name": "L1_SingleIsoEG32", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 334.125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG32er": { + "name": "L1_SingleIsoEG32er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 362.82421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34": { + "name": "L1_SingleIsoEG34", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 361.921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG34er": { + "name": "L1_SingleIsoEG34er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 361.48046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleIsoEG36": { + "name": "L1_SingleIsoEG36", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 360.73046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet120": { + "name": "L1_SingleJet120", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 88.908203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet12_BptxAND": { + "name": "L1_SingleJet12_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 54.26171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet140": { + "name": "L1_SingleJet140", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 95.181640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet150": { + "name": "L1_SingleJet150", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 238.146484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet16": { + "name": "L1_SingleJet16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet160": { + "name": "L1_SingleJet160", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 253.845703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet170": { + "name": "L1_SingleJet170", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 344.037109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet180": { + "name": "L1_SingleJet180", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 363.826171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet20": { + "name": "L1_SingleJet20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet200": { + "name": "L1_SingleJet200", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 336.943359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet35": { + "name": "L1_SingleJet35", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.07421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet60": { + "name": "L1_SingleJet60", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 59.0625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet8_BptxAND": { + "name": "L1_SingleJet8_BptxAND", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJet90": { + "name": "L1_SingleJet90", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.9453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR": { + "name": "L1_SingleJetC20_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.076171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC20_NotBptxOR_3BX": { + "name": "L1_SingleJetC20_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_3BX": { + "name": "L1_SingleJetC40_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleJetC40_NotBptxOR_5BX": { + "name": "L1_SingleJetC40_NotBptxOR_5BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu10_LowQ": { + "name": "L1_SingleMu10_LowQ", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 58.41015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu12": { + "name": "L1_SingleMu12", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.818359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14": { + "name": "L1_SingleMu14", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.818359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu14er": { + "name": "L1_SingleMu14er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16": { + "name": "L1_SingleMu16", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.818359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu16er": { + "name": "L1_SingleMu16er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 174.630859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18": { + "name": "L1_SingleMu18", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 173.693359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu18er": { + "name": "L1_SingleMu18er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 187.404296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20": { + "name": "L1_SingleMu20", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 184.958984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu20er": { + "name": "L1_SingleMu20er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 296.330078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22": { + "name": "L1_SingleMu22", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 289.833984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu22er": { + "name": "L1_SingleMu22er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 290.005859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25": { + "name": "L1_SingleMu25", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 281.259765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu25er": { + "name": "L1_SingleMu25er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 281.373046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu3": { + "name": "L1_SingleMu3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.73046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30": { + "name": "L1_SingleMu30", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.548828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu30er": { + "name": "L1_SingleMu30er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 260.689453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu5": { + "name": "L1_SingleMu5", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.7421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMu7": { + "name": "L1_SingleMu7", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 62.8359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuCosmics": { + "name": "L1_SingleMuCosmics", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.17578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen": { + "name": "L1_SingleMuOpen", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.494140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR": { + "name": "L1_SingleMuOpen_NotBptxOR", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 55.076171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleMuOpen_NotBptxOR_3BX": { + "name": "L1_SingleMuOpen_NotBptxOR_3BX", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau100er": { + "name": "L1_SingleTau100er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 239.197265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau120er": { + "name": "L1_SingleTau120er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 376.498046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_SingleTau80er": { + "name": "L1_SingleTau80er", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_14_10_8": { + "name": "L1_TripleEG_14_10_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 109.529296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleEG_18_17_8": { + "name": "L1_TripleEG_18_17_8", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 148.861328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_84_68_48_VBF": { + "name": "L1_TripleJet_84_68_48_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 218.166015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_88_72_56_VBF": { + "name": "L1_TripleJet_88_72_56_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 302.041015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleJet_92_76_64_VBF": { + "name": "L1_TripleJet_92_76_64_VBF", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 304.044921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu0": { + "name": "L1_TripleMu0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 79.95703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_0_0": { + "name": "L1_TripleMu_5_0_0", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 84.197265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_TripleMu_5_5_3": { + "name": "L1_TripleMu_5_5_3", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 74.505859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias": { + "name": "L1_ZeroBias", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 51.955078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_FirstCollidingBunch": { + "name": "L1_ZeroBias_FirstCollidingBunch", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 56.708984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_ZeroBias_copy": { + "name": "L1_ZeroBias_copy", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1_UnprefireableEvent": { + "name": "L1_UnprefireableEvent", + "doc": "Trigger/flag bit (process: NANO)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter": { + "name": "Flag_HBHENoiseFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.69140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter": { + "name": "Flag_HBHENoiseIsoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.466796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter": { + "name": "Flag_CSCTightHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 110.197265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 187.73046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter": { + "name": "Flag_CSCTightHalo2015Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 110.388671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter": { + "name": "Flag_globalTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 88.3828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter": { + "name": "Flag_globalSuperTightHalo2016Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.412109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter": { + "name": "Flag_HcalStripHaloFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.88671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter": { + "name": "Flag_hcalLaserEventFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.998046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.349609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 135.123046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter": { + "name": "Flag_ecalBadCalibFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.708984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices": { + "name": "Flag_goodVertices", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.064453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter": { + "name": "Flag_eeBadScFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.17578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter": { + "name": "Flag_ecalLaserCorrFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.8046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters": { + "name": "Flag_trkPOGFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 53.46484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter": { + "name": "Flag_chargedHadronTrackResolutionFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 59.169921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter": { + "name": "Flag_muonBadTrackFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.302734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter": { + "name": "Flag_BadChargedCandidateFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 70.56640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter": { + "name": "Flag_BadPFMuonFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.22265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonDzFilter": { + "name": "Flag_BadPFMuonDzFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 54.96875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hfNoisyHitsFilter": { + "name": "Flag_hfNoisyHitsFilter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 60.11328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter": { + "name": "Flag_BadChargedCandidateSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.60546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter": { + "name": "Flag_BadPFMuonSummer16Filter", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X": { + "name": "Flag_trkPOG_manystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X": { + "name": "Flag_trkPOG_toomanystripclus53X", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 56.705078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters": { + "name": "Flag_trkPOG_logErrorTooManyClusters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 58.080078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters": { + "name": "Flag_METFilters", + "doc": "Trigger/flag bit (process: PAT)", + "tot": 116.423828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "L1Reco_step": { + "name": "L1Reco_step", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 51.275390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseFilter_pRECO": { + "name": "Flag_HBHENoiseFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.3203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HBHENoiseIsoFilter_pRECO": { + "name": "Flag_HBHENoiseIsoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.095703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloFilter_pRECO": { + "name": "Flag_CSCTightHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 111.826171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO": { + "name": "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 189.359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_CSCTightHalo2015Filter_pRECO": { + "name": "Flag_CSCTightHalo2015Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 112.017578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalTightHalo2016Filter_pRECO": { + "name": "Flag_globalTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 90.01171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_globalSuperTightHalo2016Filter_pRECO": { + "name": "Flag_globalSuperTightHalo2016Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.041015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_HcalStripHaloFilter_pRECO": { + "name": "Flag_HcalStripHaloFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_hcalLaserEventFilter_pRECO": { + "name": "Flag_hcalLaserEventFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.626953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO": { + "name": "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 61.978515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO": { + "name": "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 136.751953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalBadCalibFilter_pRECO": { + "name": "Flag_ecalBadCalibFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.337890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_goodVertices_pRECO": { + "name": "Flag_goodVertices_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.693359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_eeBadScFilter_pRECO": { + "name": "Flag_eeBadScFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 54.8046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_ecalLaserCorrFilter_pRECO": { + "name": "Flag_ecalLaserCorrFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 56.43359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOGFilters_pRECO": { + "name": "Flag_trkPOGFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.09375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_chargedHadronTrackResolutionFilter_pRECO": { + "name": "Flag_chargedHadronTrackResolutionFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.798828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_muonBadTrackFilter_pRECO": { + "name": "Flag_muonBadTrackFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.931640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateFilter_pRECO": { + "name": "Flag_BadChargedCandidateFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 72.1953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonFilter_pRECO": { + "name": "Flag_BadPFMuonFilter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 55.8515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadChargedCandidateSummer16Filter_pRECO": { + "name": "Flag_BadChargedCandidateSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 60.234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_BadPFMuonSummer16Filter_pRECO": { + "name": "Flag_BadPFMuonSummer16Filter_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.51953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_manystripclus53X_pRECO": { + "name": "Flag_trkPOG_manystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 57.51953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_toomanystripclus53X_pRECO": { + "name": "Flag_trkPOG_toomanystripclus53X_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 58.333984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_trkPOG_logErrorTooManyClusters_pRECO": { + "name": "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 59.708984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "Flag_METFilters_pRECO": { + "name": "Flag_METFilters_pRECO", + "doc": "Trigger/flag bit (process: RECO)", + "tot": 118.017578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.17578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet360_TrimMass30": { + "name": "HLT_AK8PFJet360_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.65234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400_TrimMass30": { + "name": "HLT_AK8PFJet400_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.5078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT750_TrimMass50": { + "name": "HLT_AK8PFHT750_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.880859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT800_TrimMass50": { + "name": "HLT_AK8PFHT800_TrimMass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.880859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 131.28125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.357421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 120.251953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet300_200_TrimMass30": { + "name": "HLT_AK8DiPFJet300_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 134.2265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 114.072265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50": { + "name": "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.607421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20": { + "name": "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.708984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.2578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.05859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 136.30078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20": { + "name": "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.46484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloJet500_NoJetID": { + "name": "HLT_CaloJet500_NoJetID", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 118.05859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_PsiPrime": { + "name": "HLT_Dimuon13_PsiPrime", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.599609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon13_Upsilon": { + "name": "HLT_Dimuon13_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.66015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon20_Jpsi": { + "name": "HLT_Dimuon20_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.107421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf": { + "name": "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.166015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL": { + "name": "HLT_DoubleEle33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.220703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.6796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW": { + "name": "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.798828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 392.609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 381.845703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 379.6484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 365.337890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 372.71484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1": { + "name": "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 356.509765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 130.21875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu33NoFiltersNoVtx": { + "name": "HLT_DoubleMu33NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.01953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu38NoFiltersNoVtx": { + "name": "HLT_DoubleMu38NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.78515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu23NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.267578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu28NoFiltersNoVtxDisplaced": { + "name": "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.451171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu0": { + "name": "HLT_DoubleMu0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.900390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Bs": { + "name": "HLT_DoubleMu4_3_Bs", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.90234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_3_Jpsi_Displaced": { + "name": "HLT_DoubleMu4_3_Jpsi_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_JpsiTrk_Displaced": { + "name": "HLT_DoubleMu4_JpsiTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.142578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced": { + "name": "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.404296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_Trk_Tau3mu": { + "name": "HLT_DoubleMu3_Trk_Tau3mu", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.53515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu4_PsiPrimeTrk_Displaced": { + "name": "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.060546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Jpsi": { + "name": "HLT_Mu7p5_L2Mu2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_L2Mu2_Upsilon": { + "name": "HLT_Mu7p5_L2Mu2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.564453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Jpsi": { + "name": "HLT_Mu7p5_Track2_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.099609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Jpsi": { + "name": "HLT_Mu7p5_Track3p5_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.619140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Jpsi": { + "name": "HLT_Mu7p5_Track7_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.037109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track2_Upsilon": { + "name": "HLT_Mu7p5_Track2_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.84375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track3p5_Upsilon": { + "name": "HLT_Mu7p5_Track3p5_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.3828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu7p5_Track7_Upsilon": { + "name": "HLT_Mu7p5_Track7_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.83203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing": { + "name": "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.416015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon6_Jpsi_NoVertexing": { + "name": "HLT_Dimuon6_Jpsi_NoVertexing", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.92578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton60": { + "name": "HLT_DoublePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.0859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoublePhoton85": { + "name": "HLT_DoublePhoton85", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.3984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28": { + "name": "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 109.9609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.1875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele22_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele22_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.99609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30": { + "name": "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 135.80078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_WPTight_Gsf": { + "name": "HLT_Ele25_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.634765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele25_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele25_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 148.42578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPLoose_Gsf_WHbbBoost": { + "name": "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.021484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf": { + "name": "HLT_Ele27_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 146.603515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded": { + "name": "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.73828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele27_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 148.37109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_WPTight_Gsf": { + "name": "HLT_Ele30_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 146.275390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele30_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele30_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 148.05859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_WPTight_Gsf": { + "name": "HLT_Ele32_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.533203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele32_eta2p1_WPTight_Gsf": { + "name": "HLT_Ele32_eta2p1_WPTight_Gsf", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 147.328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1": { + "name": "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 142.552734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50": { + "name": "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.044921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele105_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.185546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT200": { + "name": "HLT_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.310546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT275": { + "name": "HLT_HT275", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.650390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT325": { + "name": "HLT_HT325", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.154296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT425": { + "name": "HLT_HT425", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.763671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT575": { + "name": "HLT_HT575", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.248046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT430to450": { + "name": "HLT_HT430to450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.99609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT450to470": { + "name": "HLT_HT450to470", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 113.8515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT470to500": { + "name": "HLT_HT470to500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.14453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT500to550": { + "name": "HLT_HT500to550", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 133.765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550to650": { + "name": "HLT_HT550to650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 143.40234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650": { + "name": "HLT_HT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 172.115234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30": { + "name": "HLT_IsoMu16_eta2p1_MET30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 124.61328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 98.119140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleIsoMu17_eta2p1_noDzCut": { + "name": "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.90234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 235.23046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 235.869140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.912109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20": { + "name": "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 289.0546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.720703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.16796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 108.380859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.89453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu20": { + "name": "HLT_IsoMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.091796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 219.123046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1": { + "name": "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 142.36328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg": { + "name": "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.474609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22": { + "name": "HLT_IsoMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 150.501953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu22_eta2p1": { + "name": "HLT_IsoMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 263.53125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24": { + "name": "HLT_IsoMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 246.978515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu24_eta2p1": { + "name": "HLT_IsoMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 248.66015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoMu27": { + "name": "HLT_IsoMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 229.962890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu20": { + "name": "HLT_IsoTkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.564453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22": { + "name": "HLT_IsoTkMu22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 145.208984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu22_eta2p1": { + "name": "HLT_IsoTkMu22_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 249.80078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24": { + "name": "HLT_IsoTkMu24", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 234.146484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu24_eta2p1": { + "name": "HLT_IsoTkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 235.8203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTkMu27": { + "name": "HLT_IsoTkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 218.142578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX3BX": { + "name": "HLT_JetE30_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE30_NoBPTX": { + "name": "HLT_JetE30_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.904296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE50_NoBPTX3BX": { + "name": "HLT_JetE50_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_JetE70_NoBPTX3BX": { + "name": "HLT_JetE70_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1SingleMu18": { + "name": "HLT_L1SingleMu18", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10": { + "name": "HLT_L2Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.48828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu23_NoVertex": { + "name": "HLT_L2DoubleMu23_NoVertex", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.935546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.7890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10": { + "name": "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.62109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX3BX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu10_NoVertex_NoBPTX": { + "name": "HLT_L2Mu10_NoVertex_NoBPTX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.34765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.51953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX": { + "name": "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.51953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 111.46875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 267.3671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 169.177734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120": { + "name": "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 142.033203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau120_eta2p1": { + "name": "HLT_PFTau120_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.337890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFTau140_eta2p1": { + "name": "HLT_PFTau140_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.318359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau120_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 236.234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VLooseIsoPFTau140_Trk50_eta2p1": { + "name": "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 336.62890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8": { + "name": "HLT_Mu17_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_DZ": { + "name": "HLT_Mu17_Mu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.447265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign": { + "name": "HLT_Mu17_Mu8_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.267578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Mu8_SameSign_DZ": { + "name": "HLT_Mu17_Mu8_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.18359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10": { + "name": "HLT_Mu20_Mu10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.216796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_DZ": { + "name": "HLT_Mu20_Mu10_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.90234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign": { + "name": "HLT_Mu20_Mu10_SameSign", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.6875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20_Mu10_SameSign_DZ": { + "name": "HLT_Mu20_Mu10_SameSign_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.978515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TkMu8_DZ": { + "name": "HLT_Mu17_TkMu8_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.873046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.26171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 104.892578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.94140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.001953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu25_TkMu0_dEta18_Onia": { + "name": "HLT_Mu25_TkMu0_dEta18_Onia", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_TkMu8": { + "name": "HLT_Mu27_TkMu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.0859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_TkMu11": { + "name": "HLT_Mu30_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.779296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu30_eta2p1_PFJet150_PFJet50": { + "name": "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.37890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_TkMu11": { + "name": "HLT_Mu40_TkMu11", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.271484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu40_eta2p1_PFJet200_PFJet50": { + "name": "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.3359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu20": { + "name": "HLT_Mu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.34375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17": { + "name": "HLT_TkMu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.4765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.55859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ": { + "name": "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.552734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu20": { + "name": "HLT_TkMu20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu24_eta2p1": { + "name": "HLT_Mu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.064453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu24_eta2p1": { + "name": "HLT_TkMu24_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.353515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27": { + "name": "HLT_Mu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu27": { + "name": "HLT_TkMu27", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu45_eta2p1": { + "name": "HLT_Mu45_eta2p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.396484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50": { + "name": "HLT_Mu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 156.06640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TkMu50": { + "name": "HLT_TkMu50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 151.234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL": { + "name": "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.494140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL": { + "name": "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.009765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL": { + "name": "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL": { + "name": "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL": { + "name": "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.244140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu18NoFiltersNoVtx": { + "name": "HLT_DoubleMu18NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.16796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose": { + "name": "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.646484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.62109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.6171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose": { + "name": "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 107.005859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40": { + "name": "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.955078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_PFMET110": { + "name": "HLT_PFHT300_PFMET110", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT550_4JetPt50": { + "name": "HLT_PFHT550_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_4JetPt50": { + "name": "HLT_PFHT650_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt70": { + "name": "HLT_PFHT750_4JetPt70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.3828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT750_4JetPt80": { + "name": "HLT_PFHT750_4JetPt80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.17578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT800_4JetPt50": { + "name": "HLT_PFHT800_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 99.5703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT850_4JetPt50": { + "name": "HLT_PFHT850_4JetPt50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 94.921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet15_NoCaloMatched": { + "name": "HLT_PFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.076171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet25_NoCaloMatched": { + "name": "HLT_PFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.076171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_NoCaloMatched": { + "name": "HLT_DiPFJet15_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.619140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_NoCaloMatched": { + "name": "HLT_DiPFJet25_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.619140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet15_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.51953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet25_FBEta3_NoCaloMatched": { + "name": "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.51953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve15_HFJEC": { + "name": "HLT_DiPFJetAve15_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.26171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve25_HFJEC": { + "name": "HLT_DiPFJetAve25_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.26171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve35_HFJEC": { + "name": "HLT_DiPFJetAve35_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.26171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet40": { + "name": "HLT_AK8PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.09765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet60": { + "name": "HLT_AK8PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.16015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet80": { + "name": "HLT_AK8PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.23828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet140": { + "name": "HLT_AK8PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.119140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet200": { + "name": "HLT_AK8PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.275390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet260": { + "name": "HLT_AK8PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.623046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet320": { + "name": "HLT_AK8PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.615234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet400": { + "name": "HLT_AK8PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.068359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet450": { + "name": "HLT_AK8PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.173828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK8PFJet500": { + "name": "HLT_AK8PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 115.869140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet40": { + "name": "HLT_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.310546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet60": { + "name": "HLT_PFJet60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.396484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet80": { + "name": "HLT_PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.533203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet140": { + "name": "HLT_PFJet140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.88671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet200": { + "name": "HLT_PFJet200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.21875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet260": { + "name": "HLT_PFJet260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.83984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet320": { + "name": "HLT_PFJet320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.57421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet400": { + "name": "HLT_PFJet400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.79296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet450": { + "name": "HLT_PFJet450", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 121.12890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFJet500": { + "name": "HLT_PFJet500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 112.0703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve40": { + "name": "HLT_DiPFJetAve40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.63671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60": { + "name": "HLT_DiPFJetAve60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.80078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80": { + "name": "HLT_DiPFJetAve80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve140": { + "name": "HLT_DiPFJetAve140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.935546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve200": { + "name": "HLT_DiPFJetAve200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.580078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve260": { + "name": "HLT_DiPFJetAve260", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.638671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve320": { + "name": "HLT_DiPFJetAve320", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.115234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve400": { + "name": "HLT_DiPFJetAve400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.044921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve500": { + "name": "HLT_DiPFJetAve500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.697265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve60_HFJEC": { + "name": "HLT_DiPFJetAve60_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.45703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve80_HFJEC": { + "name": "HLT_DiPFJetAve80_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.29296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve100_HFJEC": { + "name": "HLT_DiPFJetAve100_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.767578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve160_HFJEC": { + "name": "HLT_DiPFJetAve160_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.912109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve220_HFJEC": { + "name": "HLT_DiPFJetAve220_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.935546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJetAve300_HFJEC": { + "name": "HLT_DiPFJetAve300_HFJEC", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.158203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.513671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80": { + "name": "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.37109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170": { + "name": "HLT_DiCentralPFJet170", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.802734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_SingleCentralPFJet170_CFMax0p1": { + "name": "HLT_SingleCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.8203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet170_CFMax0p1": { + "name": "HLT_DiCentralPFJet170_CFMax0p1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.46484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet330_CFMax0p5": { + "name": "HLT_DiCentralPFJet330_CFMax0p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.6171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiCentralPFJet430": { + "name": "HLT_DiCentralPFJet430", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.505859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBF_PassThrough": { + "name": "HLT_DiJetVBF_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.2890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiJetVBFMu_PassThrough": { + "name": "HLT_DiJetVBFMu_PassThrough", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.69921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT125": { + "name": "HLT_PFHT125", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.533203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200": { + "name": "HLT_PFHT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.876953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250": { + "name": "HLT_PFHT250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.904296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300": { + "name": "HLT_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350": { + "name": "HLT_PFHT350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.181640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400": { + "name": "HLT_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.353515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT475": { + "name": "HLT_PFHT475", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.255859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT600": { + "name": "HLT_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.537109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650": { + "name": "HLT_PFHT650", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.373046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT900": { + "name": "HLT_PFHT900", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.392578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_PFAlphaT0p51": { + "name": "HLT_PFHT200_PFAlphaT0p51", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.58984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63": { + "name": "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.927734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58": { + "name": "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.255859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54": { + "name": "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.791015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53": { + "name": "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.513671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52": { + "name": "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.240234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET60_IsoTrk35_Loose": { + "name": "HLT_MET60_IsoTrk35_Loose", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.80859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET75_IsoTrk50": { + "name": "HLT_MET75_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.1796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET90_IsoTrk50": { + "name": "HLT_MET90_IsoTrk50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 86.98828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_NotCleaned": { + "name": "HLT_PFMET170_NotCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.599609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHECleaned": { + "name": "HLT_PFMET170_HBHECleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.0703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_BeamHaloCleaned": { + "name": "HLT_PFMET170_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.9453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET170_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMET170_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.337890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned": { + "name": "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.4453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET110_PFMHT110_IDTight": { + "name": "HLT_PFMET110_PFMHT110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 88.787109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET120_PFMHT120_IDTight": { + "name": "HLT_PFMET120_PFMHT120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 92.857421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.4453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight": { + "name": "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.357421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.419921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.064453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240": { + "name": "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.072265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500": { + "name": "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.591796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadPFJet_VBF": { + "name": "HLT_QuadPFJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.365234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1_TripleJet_VBF": { + "name": "HLT_L1_TripleJet_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.30859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_TripleBTagCSV_p087": { + "name": "HLT_QuadJet45_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadJet45_DoubleBTagCSV_p087": { + "name": "HLT_QuadJet45_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.05859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.716796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087": { + "name": "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.083984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.46484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6": { + "name": "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.16796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.85546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6": { + "name": "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.04296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.087890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.201171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.220703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350": { + "name": "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 68.669921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon135_PFMET100": { + "name": "HLT_Photon135_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.529296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.443359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon250_NoHE": { + "name": "HLT_Photon250_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 103.88671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon300_NoHE": { + "name": "HLT_Photon300_NoHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 89.921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60": { + "name": "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.88671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.0703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.712890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.041015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.271484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.470703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.978515625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.373046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.521484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.443359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.66796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF": { + "name": "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.89453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL": { + "name": "HLT_Mu8_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.017578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL": { + "name": "HLT_Mu17_TrkIsoVVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.48828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.33203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.3203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.46875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet20_Mu5": { + "name": "HLT_BTagMu_DiJet20_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.49609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet40_Mu5": { + "name": "HLT_BTagMu_DiJet40_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.27734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet70_Mu5": { + "name": "HLT_BTagMu_DiJet70_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.4140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet110_Mu5": { + "name": "HLT_BTagMu_DiJet110_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.322265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_DiJet170_Mu5": { + "name": "HLT_BTagMu_DiJet170_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.142578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_Jet300_Mu5": { + "name": "HLT_BTagMu_Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.845703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_BTagMu_AK8Jet300_Mu5": { + "name": "HLT_BTagMu_AK8Jet300_Mu5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.66796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 125.373046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.98046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 84.884765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL": { + "name": "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.427734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.82421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.458984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.095703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 78.11328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 71.134765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.646484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.841796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ": { + "name": "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.6953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.416015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.759765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 75.017578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL": { + "name": "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.91015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL": { + "name": "HLT_Mu12_Photon25_CaloIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.080078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1ISO": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.751953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu12_Photon25_CaloIdL_L1OR": { + "name": "HLT_Mu12_Photon25_CaloIdL_L1OR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.30859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon30_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.318359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17_Photon35_CaloIdL_L1ISO": { + "name": "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.302734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL": { + "name": "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.291015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_5_3_3_DZ_Mass3p8": { + "name": "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.080078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TripleMu_12_10_5": { + "name": "HLT_TripleMu_12_10_5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.34765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu6_PFHT200_PFMET100": { + "name": "HLT_Mu6_PFHT200_PFMET100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.30859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.05859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.12890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.99609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_GsfTrkIdVL": { + "name": "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.96484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.01953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL": { + "name": "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 105.46484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5": { + "name": "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 101.84375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22": { + "name": "HLT_Photon22", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.58203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30": { + "name": "HLT_Photon30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.67578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36": { + "name": "HLT_Photon36", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.74609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50": { + "name": "HLT_Photon50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75": { + "name": "HLT_Photon75", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.20703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90": { + "name": "HLT_Photon90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.64453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120": { + "name": "HLT_Photon120", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.173828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon175": { + "name": "HLT_Photon175", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.345703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_HE10": { + "name": "HLT_Photon165_HE10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 82.92578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon22_R9Id90_HE10_IsoM": { + "name": "HLT_Photon22_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.259765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon30_R9Id90_HE10_IsoM": { + "name": "HLT_Photon30_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.544921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon36_R9Id90_HE10_IsoM": { + "name": "HLT_Photon36_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.998046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon50_R9Id90_HE10_IsoM": { + "name": "HLT_Photon50_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.013671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon75_R9Id90_HE10_IsoM": { + "name": "HLT_Photon75_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.451171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_R9Id90_HE10_IsoM": { + "name": "HLT_Photon90_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.908203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon120_R9Id90_HE10_IsoM": { + "name": "HLT_Photon120_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.97265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon165_R9Id90_HE10_IsoM": { + "name": "HLT_Photon165_R9Id90_HE10_IsoM", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 102.8828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70": { + "name": "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 126.513671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.943359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55": { + "name": "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.849609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55": { + "name": "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.12109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Jpsi_Muon": { + "name": "HLT_Dimuon0_Jpsi_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.720703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Upsilon_Muon": { + "name": "HLT_Dimuon0_Upsilon_Muon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.46484375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Jpsi": { + "name": "HLT_QuadMuon0_Dimuon0_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_QuadMuon0_Dimuon0_Upsilon": { + "name": "HLT_QuadMuon0_Dimuon0_Upsilon", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.216796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p25": { + "name": "HLT_Rsq0p25", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.802734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p30": { + "name": "HLT_Rsq0p30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.541015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200": { + "name": "HLT_RsqMR270_Rsq0p09_MR200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 91.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_RsqMR270_Rsq0p09_MR200_4jet": { + "name": "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.134765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.810546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.490234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.189453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200": { + "name": "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.287109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT250_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.955078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 73.470703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.173828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack": { + "name": "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 65.560546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT350_DisplacedDijet40_Inclusive": { + "name": "HLT_HT350_DisplacedDijet40_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.73828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT550_DisplacedDijet80_Inclusive": { + "name": "HLT_HT550_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.0078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT650_DisplacedDijet80_Inclusive": { + "name": "HLT_HT650_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.25, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT750_DisplacedDijet80_Inclusive": { + "name": "HLT_HT750_DisplacedDijet80_Inclusive", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.47265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.498046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5": { + "name": "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.4296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.126953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_TightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.20703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack": { + "name": "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.177734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 110.888671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 119.291015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 132.75, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight": { + "name": "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 123.41015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200": { + "name": "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 106.421875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu8_Mass8_PFHT300": { + "name": "HLT_DoubleMu8_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.681640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 74.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300": { + "name": "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.166015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.693359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DoubleMu3_PFMET50": { + "name": "HLT_DoubleMu3_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 63.830078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13": { + "name": "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.919921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.25, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT600": { + "name": "HLT_Ele15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 64.841796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.615234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele15_IsoVVVL_PFHT400": { + "name": "HLT_Ele15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.400390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_IsoVVVL_PFHT400": { + "name": "HLT_Ele50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 76.619140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60": { + "name": "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.974609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60": { + "name": "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 70.609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 62.306640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT600": { + "name": "HLT_Mu15_IsoVVVL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 72.2734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50": { + "name": "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 81.734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu15_IsoVVVL_PFHT400": { + "name": "HLT_Mu15_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 96.453125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu50_IsoVVVL_PFHT400": { + "name": "HLT_Mu50_IsoVVVL_PFHT400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 87.01171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon16_Jpsi": { + "name": "HLT_Dimuon16_Jpsi", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.822265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_PsiPrime_Barrel": { + "name": "HLT_Dimuon8_PsiPrime_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.072265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon8_Upsilon_Barrel": { + "name": "HLT_Dimuon8_Upsilon_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.8359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Dimuon0_Phi_Barrel": { + "name": "HLT_Dimuon0_Phi_Barrel", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.20703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx": { + "name": "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.76171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx": { + "name": "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.734375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu8": { + "name": "HLT_Mu8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 50.263671875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu17": { + "name": "HLT_Mu17", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.87109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu3_PFJet40": { + "name": "HLT_Mu3_PFJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.466796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.349609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.73828125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.80859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30": { + "name": "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165": { + "name": "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 97.123046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056": { + "name": "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 80.849609375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40_BTagCSV_p056": { + "name": "HLT_PFHT450_SixJet40_BTagCSV_p056", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 77.275390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT400_SixJet30": { + "name": "HLT_PFHT400_SixJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.0234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFHT450_SixJet40": { + "name": "HLT_PFHT450_SixJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.1015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele115_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 95.337890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele145_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 79.935546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele200_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 66.685546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu55": { + "name": "HLT_Mu55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 144.85546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15": { + "name": "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 122.44921875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon90_CaloIdL_PFHT600": { + "name": "HLT_Photon90_CaloIdL_PFHT600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 83.703125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity80": { + "name": "HLT_FullTracks_Multiplicity80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.162109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity100": { + "name": "HLT_FullTracks_Multiplicity100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.43359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity130": { + "name": "HLT_FullTracks_Multiplicity130", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.43359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_FullTracks_Multiplicity150": { + "name": "HLT_FullTracks_Multiplicity150", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.43359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ECALHT800": { + "name": "HLT_ECALHT800", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 69.568359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_DiSC30_18_EIso_AND_HE_Mass70": { + "name": "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.91796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET200": { + "name": "HLT_MET200", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 67.6171875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele27_HighEta_Ele20_Mass55": { + "name": "HLT_Ele27_HighEta_Ele20_Mass55", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.91796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents": { + "name": "HLT_L1FatEvents", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.490234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Physics": { + "name": "HLT_Physics", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.404296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part0": { + "name": "HLT_L1FatEvents_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part1": { + "name": "HLT_L1FatEvents_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part2": { + "name": "HLT_L1FatEvents_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1FatEvents_part3": { + "name": "HLT_L1FatEvents_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Random": { + "name": "HLT_Random", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.00390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias": { + "name": "HLT_ZeroBias", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.546875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet30": { + "name": "HLT_AK4CaloJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet40": { + "name": "HLT_AK4CaloJet40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet50": { + "name": "HLT_AK4CaloJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet80": { + "name": "HLT_AK4CaloJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.6328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4CaloJet100": { + "name": "HLT_AK4CaloJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.904296875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet30": { + "name": "HLT_AK4PFJet30", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet50": { + "name": "HLT_AK4PFJet50", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet80": { + "name": "HLT_AK4PFJet80", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_AK4PFJet100": { + "name": "HLT_AK4PFJet100", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton10": { + "name": "HLT_HISinglePhoton10", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton15": { + "name": "HLT_HISinglePhoton15", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton20": { + "name": "HLT_HISinglePhoton20", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton40": { + "name": "HLT_HISinglePhoton40", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HISinglePhoton60": { + "name": "HLT_HISinglePhoton60", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.71875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_EcalCalibration": { + "name": "HLT_EcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.447265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalCalibration": { + "name": "HLT_HcalCalibration", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.447265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_GlobalRunHPDNoise": { + "name": "HLT_GlobalRunHPDNoise", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxMinus": { + "name": "HLT_L1BptxMinus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1BptxPlus": { + "name": "HLT_L1BptxPlus", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1NotBptxOR": { + "name": "HLT_L1NotBptxOR", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.361328125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part0": { + "name": "HLT_L1MinimumBiasHF_OR_part0", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part1": { + "name": "HLT_L1MinimumBiasHF_OR_part1", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part2": { + "name": "HLT_L1MinimumBiasHF_OR_part2", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part3": { + "name": "HLT_L1MinimumBiasHF_OR_part3", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part4": { + "name": "HLT_L1MinimumBiasHF_OR_part4", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part5": { + "name": "HLT_L1MinimumBiasHF_OR_part5", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part6": { + "name": "HLT_L1MinimumBiasHF_OR_part6", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part7": { + "name": "HLT_L1MinimumBiasHF_OR_part7", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part8": { + "name": "HLT_L1MinimumBiasHF_OR_part8", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_OR_part9": { + "name": "HLT_L1MinimumBiasHF_OR_part9", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_L1MinimumBiasHF_AND": { + "name": "HLT_L1MinimumBiasHF_AND", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.533203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalNZS": { + "name": "HLT_HcalNZS", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.283203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalPhiSym": { + "name": "HLT_HcalPhiSym", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.08984375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HcalIsolatedbunch": { + "name": "HLT_HcalIsolatedbunch", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.990234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.15234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy": { + "name": "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 60.505859375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_IsolatedBunches": { + "name": "HLT_ZeroBias_IsolatedBunches", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 55.890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstCollisionInTrain": { + "name": "HLT_ZeroBias_FirstCollisionInTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 57.51953125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_ZeroBias_FirstBXAfterTrain": { + "name": "HLT_ZeroBias_FirstBXAfterTrain", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 56.43359375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon500": { + "name": "HLT_Photon500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.900390625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Photon600": { + "name": "HLT_Photon600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.740234375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu300": { + "name": "HLT_Mu300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.369140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Mu350": { + "name": "HLT_Mu350", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.662109375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET250": { + "name": "HLT_MET250", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 58.80078125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET300": { + "name": "HLT_MET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.84765625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET600": { + "name": "HLT_MET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.2265625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_MET700": { + "name": "HLT_MET700", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.1015625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET300": { + "name": "HLT_PFMET300", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 54.046875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET400": { + "name": "HLT_PFMET400", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.37890625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET500": { + "name": "HLT_PFMET500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.83203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_PFMET600": { + "name": "HLT_PFMET600", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 51.69140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele250_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 61.869140625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_Ele300_CaloIdVT_GsfTrkIdT": { + "name": "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.556640625, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2000": { + "name": "HLT_HT2000", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 59.375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_HT2500": { + "name": "HLT_HT2500", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.1796875, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHE": { + "name": "HLT_IsoTrackHE", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.203125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLT_IsoTrackHB": { + "name": "HLT_IsoTrackHB", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 52.34375, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "tot": 53.17578125, + "entries": 2160343, + "single": true, + "kind": "Bool_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 57.791015625, + "entries": 2160343, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 64.400390625, + "entries": 2160343, + "subs": [ + "luminosityBlock" + ] + }, + "event": { + "name": "event", + "doc": "event/l", + "kind": "Variable", + "tot": 5792.330078125, + "entries": 2160343, + "subs": [ + "event" + ] + }, + "boostedTau": { + "name": "boostedTau", + "doc": "slimmedBoostedTaus after basic selection (pt > 40 && tauID('decayModeFindingNewDMs') && (tauID('byVVLooseIsolationMVArun2017v2DBoldDMwLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBoldDMdR0p3wLT2017') || tauID('byVVLooseIsolationMVArun2017v2DBnewDMwLT2017')))", + "kind": "Collection", + "tot": 41554.2080078125, + "entries": 623609.0, + "subs": [ + "boostedTau_chargedIso", + "boostedTau_eta", + "boostedTau_leadTkDeltaEta", + "boostedTau_leadTkDeltaPhi", + "boostedTau_leadTkPtOverTauPt", + "boostedTau_mass", + "boostedTau_neutralIso", + "boostedTau_phi", + "boostedTau_photonsOutsideSignalCone", + "boostedTau_pt", + "boostedTau_puCorr", + "boostedTau_rawAntiEle2018", + "boostedTau_rawIso", + "boostedTau_rawIsodR03", + "boostedTau_rawMVAnewDM2017v2", + "boostedTau_rawMVAoldDM2017v2", + "boostedTau_rawMVAoldDMdR032017v2", + "boostedTau_charge", + "boostedTau_decayMode", + "boostedTau_jetIdx", + "boostedTau_rawAntiEleCat2018", + "boostedTau_idAntiEle2018", + "boostedTau_idAntiMu", + "boostedTau_idMVAnewDM2017v2", + "boostedTau_idMVAoldDM2017v2", + "boostedTau_idMVAoldDMdR032017v2", + "nboostedTau" + ] + }, + "CaloMET": { + "name": "CaloMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11292.75390625, + "entries": 2160343, + "subs": [ + "CaloMET_phi", + "CaloMET_pt", + "CaloMET_sumEt" + ] + }, + "ChsMET": { + "name": "ChsMET", + "doc": "raw chs PF MET phi", + "kind": "Singleton", + "tot": 11247.888671875, + "entries": 2160343, + "subs": [ + "ChsMET_phi", + "ChsMET_pt", + "ChsMET_sumEt" + ] + }, + "CorrT1METJet": { + "name": "CorrT1METJet", + "doc": "Additional low-pt jets for Type-1 MET re-correction", + "kind": "Collection", + "tot": 107200.2138671875, + "entries": 12298425.0, + "subs": [ + "CorrT1METJet_area", + "CorrT1METJet_eta", + "CorrT1METJet_muonSubtrFactor", + "CorrT1METJet_phi", + "CorrT1METJet_rawPt", + "nCorrT1METJet" + ] + }, + "DeepMETResolutionTune": { + "name": "DeepMETResolutionTune", + "doc": "DeepmET ResolutionTune phi", + "kind": "Singleton", + "tot": 12404.447265625, + "entries": 2160343, + "subs": [ + "DeepMETResolutionTune_phi", + "DeepMETResolutionTune_pt" + ] + }, + "DeepMETResponseTune": { + "name": "DeepMETResponseTune", + "doc": "DeepMET ResponseTune phi", + "kind": "Singleton", + "tot": 12460.208984375, + "entries": 2160343, + "subs": [ + "DeepMETResponseTune_phi", + "DeepMETResponseTune_pt" + ] + }, + "Electron": { + "name": "Electron", + "doc": "slimmedElectrons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 145994.6357421875, + "entries": 1268548.0, + "subs": [ + "Electron_dEscaleDown", + "Electron_dEscaleUp", + "Electron_dEsigmaDown", + "Electron_dEsigmaUp", + "Electron_deltaEtaSC", + "Electron_dr03EcalRecHitSumEt", + "Electron_dr03HcalDepth1TowerSumEt", + "Electron_dr03TkSumPt", + "Electron_dr03TkSumPtHEEP", + "Electron_dxy", + "Electron_dxyErr", + "Electron_dz", + "Electron_dzErr", + "Electron_eCorr", + "Electron_eInvMinusPInv", + "Electron_energyErr", + "Electron_eta", + "Electron_hoe", + "Electron_ip3d", + "Electron_jetPtRelv2", + "Electron_jetRelIso", + "Electron_mass", + "Electron_miniPFRelIso_all", + "Electron_miniPFRelIso_chg", + "Electron_mvaFall17V2Iso", + "Electron_mvaFall17V2noIso", + "Electron_pfRelIso03_all", + "Electron_pfRelIso03_chg", + "Electron_phi", + "Electron_pt", + "Electron_r9", + "Electron_scEtOverPt", + "Electron_sieie", + "Electron_sip3d", + "Electron_mvaTTH", + "Electron_charge", + "Electron_cutBased", + "Electron_jetIdx", + "Electron_pdgId", + "Electron_photonIdx", + "Electron_tightCharge", + "Electron_vidNestedWPBitmap", + "Electron_vidNestedWPBitmapHEEP", + "Electron_convVeto", + "Electron_cutBased_HEEP", + "Electron_isPFcand", + "Electron_jetNDauCharged", + "Electron_lostHits", + "Electron_mvaFall17V2Iso_WP80", + "Electron_mvaFall17V2Iso_WP90", + "Electron_mvaFall17V2Iso_WPL", + "Electron_mvaFall17V2noIso_WP80", + "Electron_mvaFall17V2noIso_WP90", + "Electron_mvaFall17V2noIso_WPL", + "Electron_seedGain", + "Electron_cleanmask", + "nElectron" + ] + }, + "FatJet": { + "name": "FatJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 165461.8046875, + "entries": 1302609.0, + "subs": [ + "FatJet_area", + "FatJet_btagCSVV2", + "FatJet_btagDDBvLV2", + "FatJet_btagDDCvBV2", + "FatJet_btagDDCvLV2", + "FatJet_btagDeepB", + "FatJet_btagHbb", + "FatJet_deepTagMD_H4qvsQCD", + "FatJet_deepTagMD_HbbvsQCD", + "FatJet_deepTagMD_TvsQCD", + "FatJet_deepTagMD_WvsQCD", + "FatJet_deepTagMD_ZHbbvsQCD", + "FatJet_deepTagMD_ZHccvsQCD", + "FatJet_deepTagMD_ZbbvsQCD", + "FatJet_deepTagMD_ZvsQCD", + "FatJet_deepTagMD_bbvsLight", + "FatJet_deepTagMD_ccvsLight", + "FatJet_deepTag_H", + "FatJet_deepTag_QCD", + "FatJet_deepTag_QCDothers", + "FatJet_deepTag_TvsQCD", + "FatJet_deepTag_WvsQCD", + "FatJet_deepTag_ZvsQCD", + "FatJet_eta", + "FatJet_mass", + "FatJet_msoftdrop", + "FatJet_n2b1", + "FatJet_n3b1", + "FatJet_particleNetMD_QCD", + "FatJet_particleNetMD_Xbb", + "FatJet_particleNetMD_Xcc", + "FatJet_particleNetMD_Xqq", + "FatJet_particleNet_H4qvsQCD", + "FatJet_particleNet_HbbvsQCD", + "FatJet_particleNet_HccvsQCD", + "FatJet_particleNet_QCD", + "FatJet_particleNet_TvsQCD", + "FatJet_particleNet_WvsQCD", + "FatJet_particleNet_ZvsQCD", + "FatJet_particleNet_mass", + "FatJet_phi", + "FatJet_pt", + "FatJet_rawFactor", + "FatJet_tau1", + "FatJet_tau2", + "FatJet_tau3", + "FatJet_tau4", + "FatJet_lsf3", + "FatJet_jetId", + "FatJet_subJetIdx1", + "FatJet_subJetIdx2", + "FatJet_electronIdx3SJ", + "FatJet_muonIdx3SJ", + "FatJet_nConstituents", + "nFatJet" + ] + }, + "FsrPhoton": { + "name": "FsrPhoton", + "doc": "Final state radiation photons emitted by muons", + "kind": "Collection", + "tot": 1852.0859375, + "entries": 34606.0, + "subs": [ + "FsrPhoton_dROverEt2", + "FsrPhoton_eta", + "FsrPhoton_phi", + "FsrPhoton_pt", + "FsrPhoton_relIso03", + "FsrPhoton_muonIdx", + "nFsrPhoton" + ] + }, + "IsoTrack": { + "name": "IsoTrack", + "doc": "isolated tracks after basic selection (((pt>5 && (abs(pdgId) == 11 || abs(pdgId) == 13)) || pt > 10) && (abs(pdgId) < 15 || abs(eta) < 2.5) && ((abs(dxy) < 0.2 && abs(dz) < 0.1) || pt>15) && ((pfIsolationDR03().chargedHadronIso < 5 && pt < 25) || pfIsolationDR03().chargedHadronIso/pt < 0.2)) and lepton veto", + "kind": "Collection", + "tot": 89002.5244140625, + "entries": 3964509.0, + "subs": [ + "IsoTrack_dxy", + "IsoTrack_dz", + "IsoTrack_eta", + "IsoTrack_pfRelIso03_all", + "IsoTrack_pfRelIso03_chg", + "IsoTrack_phi", + "IsoTrack_pt", + "IsoTrack_miniPFRelIso_all", + "IsoTrack_miniPFRelIso_chg", + "IsoTrack_charge", + "IsoTrack_fromPV", + "IsoTrack_pdgId", + "IsoTrack_isHighPurityTrack", + "IsoTrack_isPFcand", + "IsoTrack_isFromLostTrack", + "nIsoTrack" + ] + }, + "Jet": { + "name": "Jet", + "doc": "slimmedJets, i.e. ak4 PFJets CHS with JECs applied, after basic selection (pt > 15)", + "kind": "Collection", + "tot": 555320.4873046875, + "entries": 12806533.0, + "subs": [ + "Jet_area", + "Jet_btagCSVV2", + "Jet_btagDeepB", + "Jet_btagDeepCvB", + "Jet_btagDeepCvL", + "Jet_btagDeepFlavB", + "Jet_btagDeepFlavCvB", + "Jet_btagDeepFlavCvL", + "Jet_btagDeepFlavQG", + "Jet_chEmEF", + "Jet_chFPV0EF", + "Jet_chHEF", + "Jet_eta", + "Jet_hfsigmaEtaEta", + "Jet_hfsigmaPhiPhi", + "Jet_mass", + "Jet_muEF", + "Jet_muonSubtrFactor", + "Jet_neEmEF", + "Jet_neHEF", + "Jet_phi", + "Jet_pt", + "Jet_puIdDisc", + "Jet_qgl", + "Jet_rawFactor", + "Jet_bRegCorr", + "Jet_bRegRes", + "Jet_cRegCorr", + "Jet_cRegRes", + "Jet_electronIdx1", + "Jet_electronIdx2", + "Jet_hfadjacentEtaStripsSize", + "Jet_hfcentralEtaStripSize", + "Jet_jetId", + "Jet_muonIdx1", + "Jet_muonIdx2", + "Jet_nElectrons", + "Jet_nMuons", + "Jet_puId", + "Jet_nConstituents", + "Jet_cleanmask", + "nJet" + ] + }, + "L1PreFiringWeight": { + "name": "L1PreFiringWeight", + "doc": "L1 pre-firing event correction weight (1-probability), down var.", + "kind": "Singleton", + "tot": 17774.880859375, + "entries": 2160343, + "subs": [ + "L1PreFiringWeight_Dn", + "L1PreFiringWeight_ECAL_Dn", + "L1PreFiringWeight_ECAL_Nom", + "L1PreFiringWeight_ECAL_Up", + "L1PreFiringWeight_Muon_Nom", + "L1PreFiringWeight_Muon_StatDn", + "L1PreFiringWeight_Muon_StatUp", + "L1PreFiringWeight_Muon_SystDn", + "L1PreFiringWeight_Muon_SystUp", + "L1PreFiringWeight_Nom", + "L1PreFiringWeight_Up" + ] + }, + "LowPtElectron": { + "name": "LowPtElectron", + "doc": "slimmedLowPtElectrons after basic selection (pt > 1. && userFloat('ID') > -0.25)", + "kind": "Collection", + "tot": 76795.380859375, + "entries": 1046416.0, + "subs": [ + "LowPtElectron_ID", + "LowPtElectron_convVtxRadius", + "LowPtElectron_deltaEtaSC", + "LowPtElectron_dxy", + "LowPtElectron_dxyErr", + "LowPtElectron_dz", + "LowPtElectron_dzErr", + "LowPtElectron_eInvMinusPInv", + "LowPtElectron_embeddedID", + "LowPtElectron_energyErr", + "LowPtElectron_eta", + "LowPtElectron_hoe", + "LowPtElectron_mass", + "LowPtElectron_miniPFRelIso_all", + "LowPtElectron_miniPFRelIso_chg", + "LowPtElectron_phi", + "LowPtElectron_pt", + "LowPtElectron_ptbiased", + "LowPtElectron_r9", + "LowPtElectron_scEtOverPt", + "LowPtElectron_sieie", + "LowPtElectron_unbiased", + "LowPtElectron_charge", + "LowPtElectron_convWP", + "LowPtElectron_pdgId", + "LowPtElectron_convVeto", + "LowPtElectron_lostHits", + "nLowPtElectron" + ] + }, + "MET": { + "name": "MET", + "doc": "Delta (METx_mod-METx) Unclustered Energy Up", + "kind": "Singleton", + "tot": 41043.451171875, + "entries": 2160343, + "subs": [ + "MET_MetUnclustEnUpDeltaX", + "MET_MetUnclustEnUpDeltaY", + "MET_covXX", + "MET_covXY", + "MET_covYY", + "MET_phi", + "MET_pt", + "MET_significance", + "MET_sumEt", + "MET_sumPtUnclustered" + ] + }, + "Proton": { + "name": "Proton", + "doc": "Mandelstam variable t", + "kind": "ItsComplicated", + "tot": 20325.8447265625, + "entries": 474325.0, + "subs": [ + "Proton_multiRP_t", + "Proton_multiRP_thetaX", + "Proton_multiRP_thetaY", + "Proton_multiRP_time", + "Proton_multiRP_timeUnc", + "Proton_multiRP_xi", + "Proton_multiRP_arm", + "Proton_singleRP_thetaY", + "Proton_singleRP_xi", + "Proton_singleRP_decRPId", + "nProton_multiRP", + "nProton_singleRP" + ] + }, + "Muon": { + "name": "Muon", + "doc": "slimmedMuons after basic selection (pt > 15 || (pt > 3 && (passed('CutBasedIdLoose') || passed('SoftCutBasedId') || passed('SoftMvaId') || passed('CutBasedIdGlobalHighPt') || passed('CutBasedIdTrkHighPt'))))", + "kind": "Collection", + "tot": 116588.8408203125, + "entries": 1187435.0, + "subs": [ + "Muon_dxy", + "Muon_dxyErr", + "Muon_dxybs", + "Muon_dz", + "Muon_dzErr", + "Muon_eta", + "Muon_ip3d", + "Muon_jetPtRelv2", + "Muon_jetRelIso", + "Muon_mass", + "Muon_miniPFRelIso_all", + "Muon_miniPFRelIso_chg", + "Muon_pfRelIso03_all", + "Muon_pfRelIso03_chg", + "Muon_pfRelIso04_all", + "Muon_phi", + "Muon_pt", + "Muon_ptErr", + "Muon_segmentComp", + "Muon_sip3d", + "Muon_softMva", + "Muon_tkRelIso", + "Muon_tunepRelPt", + "Muon_mvaLowPt", + "Muon_mvaTTH", + "Muon_charge", + "Muon_jetIdx", + "Muon_nStations", + "Muon_nTrackerLayers", + "Muon_pdgId", + "Muon_tightCharge", + "Muon_fsrPhotonIdx", + "Muon_highPtId", + "Muon_highPurity", + "Muon_inTimeMuon", + "Muon_isGlobal", + "Muon_isPFcand", + "Muon_isStandalone", + "Muon_isTracker", + "Muon_jetNDauCharged", + "Muon_looseId", + "Muon_mediumId", + "Muon_mediumPromptId", + "Muon_miniIsoId", + "Muon_multiIsoId", + "Muon_mvaId", + "Muon_mvaLowPtId", + "Muon_pfIsoId", + "Muon_puppiIsoId", + "Muon_softId", + "Muon_softMvaId", + "Muon_tightId", + "Muon_tkIsoId", + "Muon_triggerIdLoose", + "Muon_cleanmask", + "nMuon" + ] + }, + "Photon": { + "name": "Photon", + "doc": "slimmedPhotons after basic selection (pt > 5 )", + "kind": "Collection", + "tot": 91484.9111328125, + "entries": 1723824.0, + "subs": [ + "Photon_dEscaleDown", + "Photon_dEscaleUp", + "Photon_dEsigmaDown", + "Photon_dEsigmaUp", + "Photon_eCorr", + "Photon_energyErr", + "Photon_eta", + "Photon_hoe", + "Photon_mass", + "Photon_mvaID", + "Photon_mvaID_Fall17V1p1", + "Photon_pfRelIso03_all", + "Photon_pfRelIso03_chg", + "Photon_phi", + "Photon_pt", + "Photon_r9", + "Photon_sieie", + "Photon_charge", + "Photon_cutBased", + "Photon_cutBased_Fall17V1Bitmap", + "Photon_electronIdx", + "Photon_jetIdx", + "Photon_pdgId", + "Photon_vidNestedWPBitmap", + "Photon_electronVeto", + "Photon_isScEtaEB", + "Photon_isScEtaEE", + "Photon_mvaID_WP80", + "Photon_mvaID_WP90", + "Photon_pixelSeed", + "Photon_seedGain", + "Photon_cleanmask", + "nPhoton" + ] + }, + "PPSLocalTrack": { + "name": "PPSLocalTrack", + "doc": "ppsLocalTrack variables", + "kind": "Collection", + "tot": 17985.3720703125, + "entries": 1583787.0, + "subs": [ + "PPSLocalTrack_x", + "PPSLocalTrack_y", + "PPSLocalTrack_time", + "PPSLocalTrack_timeUnc", + "PPSLocalTrack_multiRPProtonIdx", + "PPSLocalTrack_singleRPProtonIdx", + "PPSLocalTrack_decRPId", + "PPSLocalTrack_rpType", + "nPPSLocalTrack" + ] + }, + "PuppiMET": { + "name": "PuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 63722.240234375, + "entries": 2160343, + "subs": [ + "PuppiMET_phi", + "PuppiMET_phiJERDown", + "PuppiMET_phiJERUp", + "PuppiMET_phiJESDown", + "PuppiMET_phiJESUp", + "PuppiMET_phiUnclusteredDown", + "PuppiMET_phiUnclusteredUp", + "PuppiMET_pt", + "PuppiMET_ptJERDown", + "PuppiMET_ptJERUp", + "PuppiMET_ptJESDown", + "PuppiMET_ptJESUp", + "PuppiMET_ptUnclusteredDown", + "PuppiMET_ptUnclusteredUp", + "PuppiMET_sumEt" + ] + }, + "RawMET": { + "name": "RawMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11264.623046875, + "entries": 2160343, + "subs": [ + "RawMET_phi", + "RawMET_pt", + "RawMET_sumEt" + ] + }, + "RawPuppiMET": { + "name": "RawPuppiMET", + "doc": "phi", + "kind": "Singleton", + "tot": 11674.05859375, + "entries": 2160343, + "subs": [ + "RawPuppiMET_phi", + "RawPuppiMET_pt", + "RawPuppiMET_sumEt" + ] + }, + "fixedGridRhoFastjetAll": { + "name": "fixedGridRhoFastjetAll", + "doc": "rho from all PF Candidates, used e.g. for JECs", + "kind": "Variable", + "tot": 6712.68359375, + "entries": 2160343, + "subs": [ + "fixedGridRhoFastjetAll" + ] + }, + "fixedGridRhoFastjetCentral": { + "name": "fixedGridRhoFastjetCentral", + "doc": "rho from all PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 6859.65625, + "entries": 2160343, + "subs": [ + "fixedGridRhoFastjetCentral" + ] + }, + "fixedGridRhoFastjetCentralCalo": { + "name": "fixedGridRhoFastjetCentralCalo", + "doc": "rho from calo towers with |eta| < 2.5, used e.g. egamma PFCluster isolation", + "kind": "Variable", + "tot": 7027.9609375, + "entries": 2160343, + "subs": [ + "fixedGridRhoFastjetCentralCalo" + ] + }, + "fixedGridRhoFastjetCentralChargedPileUp": { + "name": "fixedGridRhoFastjetCentralChargedPileUp", + "doc": "rho from charged PF Candidates for central region, used e.g. for JECs", + "kind": "Variable", + "tot": 7070.986328125, + "entries": 2160343, + "subs": [ + "fixedGridRhoFastjetCentralChargedPileUp" + ] + }, + "fixedGridRhoFastjetCentralNeutral": { + "name": "fixedGridRhoFastjetCentralNeutral", + "doc": "rho from neutral PF Candidates with |eta| < 2.5, used e.g. for rho corrections of some lepton isolations", + "kind": "Variable", + "tot": 6842.986328125, + "entries": 2160343, + "subs": [ + "fixedGridRhoFastjetCentralNeutral" + ] + }, + "SoftActivityJet": { + "name": "SoftActivityJet", + "doc": "jets clustered from charged candidates compatible with primary vertex (charge()!=0 && pvAssociationQuality()>=5 && vertexRef().key()==0)", + "kind": "Collection", + "tot": 66789.6640625, + "entries": 12716604.0, + "subs": [ + "SoftActivityJet_eta", + "SoftActivityJet_phi", + "SoftActivityJet_pt", + "nSoftActivityJet" + ] + }, + "SoftActivityJetHT": { + "name": "SoftActivityJetHT", + "doc": "scalar sum of soft activity jet pt, pt>1", + "kind": "Variable", + "tot": 7506.837890625, + "entries": 2160343, + "subs": [ + "SoftActivityJetHT" + ] + }, + "SoftActivityJetHT10": { + "name": "SoftActivityJetHT10", + "doc": "scalar sum of soft activity jet pt , pt >10", + "kind": "Variable", + "tot": 7499.408203125, + "entries": 2160343, + "subs": [ + "SoftActivityJetHT10" + ] + }, + "SoftActivityJetHT2": { + "name": "SoftActivityJetHT2", + "doc": "scalar sum of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 7525.453125, + "entries": 2160343, + "subs": [ + "SoftActivityJetHT2" + ] + }, + "SoftActivityJetHT5": { + "name": "SoftActivityJetHT5", + "doc": "scalar sum of soft activity jet pt, pt>5", + "kind": "Variable", + "tot": 7518.625, + "entries": 2160343, + "subs": [ + "SoftActivityJetHT5" + ] + }, + "SoftActivityJetNjets10": { + "name": "SoftActivityJetNjets10", + "doc": "number of soft activity jet pt, pt >2", + "kind": "Variable", + "tot": 854.02734375, + "entries": 2160343, + "subs": [ + "SoftActivityJetNjets10" + ] + }, + "SoftActivityJetNjets2": { + "name": "SoftActivityJetNjets2", + "doc": "number of soft activity jet pt, pt >10", + "kind": "Variable", + "tot": 1359.158203125, + "entries": 2160343, + "subs": [ + "SoftActivityJetNjets2" + ] + }, + "SoftActivityJetNjets5": { + "name": "SoftActivityJetNjets5", + "doc": "number of soft activity jet pt, pt >5", + "kind": "Variable", + "tot": 1014.478515625, + "entries": 2160343, + "subs": [ + "SoftActivityJetNjets5" + ] + }, + "SubJet": { + "name": "SubJet", + "doc": "slimmedJetsAK8, i.e. ak8 fat jets for boosted analysis", + "kind": "Collection", + "tot": 47681.154296875, + "entries": 1776234.0, + "subs": [ + "SubJet_btagCSVV2", + "SubJet_btagDeepB", + "SubJet_eta", + "SubJet_mass", + "SubJet_n2b1", + "SubJet_n3b1", + "SubJet_phi", + "SubJet_pt", + "SubJet_rawFactor", + "SubJet_tau1", + "SubJet_tau2", + "SubJet_tau3", + "SubJet_tau4", + "nSubJet" + ] + }, + "Tau": { + "name": "Tau", + "doc": "slimmedTaus after basic selection (pt > 18 && tauID('decayModeFindingNewDMs') && (tauID('byLooseCombinedIsolationDeltaBetaCorr3Hits') || (tauID('chargedIsoPtSumdR03')+max(0.,tauID('neutralIsoPtSumdR03')-0.072*tauID('puCorrPtSum'))<2.5) || tauID('byVVVLooseDeepTau2017v2p1VSjet')))", + "kind": "Collection", + "tot": 106703.2998046875, + "entries": 2079791.0, + "subs": [ + "Tau_chargedIso", + "Tau_dxy", + "Tau_dz", + "Tau_eta", + "Tau_leadTkDeltaEta", + "Tau_leadTkDeltaPhi", + "Tau_leadTkPtOverTauPt", + "Tau_mass", + "Tau_neutralIso", + "Tau_phi", + "Tau_photonsOutsideSignalCone", + "Tau_pt", + "Tau_puCorr", + "Tau_rawDeepTau2017v2p1VSe", + "Tau_rawDeepTau2017v2p1VSjet", + "Tau_rawDeepTau2017v2p1VSmu", + "Tau_rawIso", + "Tau_rawIsodR03", + "Tau_charge", + "Tau_decayMode", + "Tau_jetIdx", + "Tau_idAntiEleDeadECal", + "Tau_idAntiMu", + "Tau_idDecayModeOldDMs", + "Tau_idDeepTau2017v2p1VSe", + "Tau_idDeepTau2017v2p1VSjet", + "Tau_idDeepTau2017v2p1VSmu", + "Tau_cleanmask", + "nTau" + ] + }, + "TkMET": { + "name": "TkMET", + "doc": "raw track MET phi", + "kind": "Singleton", + "tot": 11494.9765625, + "entries": 2160343, + "subs": [ + "TkMET_phi", + "TkMET_pt", + "TkMET_sumEt" + ] + }, + "TrigObj": { + "name": "TrigObj", + "doc": "pt", + "kind": "Collection", + "tot": 148038.3095703125, + "entries": 14882758.0, + "subs": [ + "TrigObj_pt", + "TrigObj_eta", + "TrigObj_phi", + "TrigObj_l1pt", + "TrigObj_l1pt_2", + "TrigObj_l2pt", + "TrigObj_id", + "TrigObj_l1iso", + "TrigObj_l1charge", + "TrigObj_filterBits", + "nTrigObj" + ] + }, + "OtherPV": { + "name": "OtherPV", + "doc": "Z position of other primary vertices, excluding the main PV", + "kind": "Vector", + "tot": 12032.595703125, + "entries": 6476758.0, + "subs": [ + "OtherPV_z", + "nOtherPV" + ] + }, + "PV": { + "name": "PV", + "doc": "main primary vertex number of degree of freedom", + "kind": "Singleton", + "tot": 22257.5390625, + "entries": 2160343, + "subs": [ + "PV_ndof", + "PV_x", + "PV_y", + "PV_z", + "PV_chi2", + "PV_score", + "PV_npvs", + "PV_npvsGood" + ] + }, + "SV": { + "name": "SV", + "doc": "decay length in cm", + "kind": "Collection", + "tot": 62567.42578125, + "entries": 1650075.0, + "subs": [ + "SV_dlen", + "SV_dlenSig", + "SV_dxy", + "SV_dxySig", + "SV_pAngle", + "SV_charge", + "SV_chi2", + "SV_eta", + "SV_mass", + "SV_ndof", + "SV_phi", + "SV_pt", + "SV_x", + "SV_y", + "SV_z", + "SV_ntracks", + "nSV" + ] + }, + "L1": { + "name": "L1", + "doc": "Trigger/flag bit (process: NANO)", + "kind": "Singleton", + "tot": 37474.166015625, + "entries": 2160343, + "subs": [ + "L1_AlwaysTrue", + "L1_BRIL_TRIG0_AND", + "L1_BRIL_TRIG0_FstBunchInTrain", + "L1_BRIL_TRIG0_OR", + "L1_BRIL_TRIG0_delayedAND", + "L1_BeamGasB1", + "L1_BeamGasB2", + "L1_BeamGasMinus", + "L1_BeamGasPlus", + "L1_BptxMinus", + "L1_BptxOR", + "L1_BptxPlus", + "L1_BptxXOR", + "L1_CastorGap_BptxAND", + "L1_CastorHaloMuon", + "L1_CastorHaloMuon_BptxAND", + "L1_CastorHighJet_BptxAND", + "L1_CastorMediumJet_BptxAND", + "L1_DoubleEG6_HTT255", + "L1_DoubleEG_15_10", + "L1_DoubleEG_18_17", + "L1_DoubleEG_20_18", + "L1_DoubleEG_22_10", + "L1_DoubleEG_22_12", + "L1_DoubleEG_22_15", + "L1_DoubleEG_23_10", + "L1_DoubleEG_24_17", + "L1_DoubleEG_25_12", + "L1_DoubleIsoTau28er", + "L1_DoubleIsoTau30er", + "L1_DoubleIsoTau32er", + "L1_DoubleIsoTau33er", + "L1_DoubleIsoTau34er", + "L1_DoubleIsoTau35er", + "L1_DoubleIsoTau36er", + "L1_DoubleJet12_ForwardBackward", + "L1_DoubleJet16_ForwardBackward", + "L1_DoubleJet30_Mj30j30_400_Mu10", + "L1_DoubleJet30_Mj30j30_400_Mu6", + "L1_DoubleJet8_ForwardBackward", + "L1_DoubleJetC100", + "L1_DoubleJetC112", + "L1_DoubleJetC120", + "L1_DoubleJetC40", + "L1_DoubleJetC50", + "L1_DoubleJetC60", + "L1_DoubleJetC60_ETM60", + "L1_DoubleJetC80", + "L1_DoubleJet_100_30_Mj30j30_620", + "L1_DoubleJet_90_30_Mj30j30_620", + "L1_DoubleMu0", + "L1_DoubleMu0_ETM40", + "L1_DoubleMu0_ETM55", + "L1_DoubleMu0_ETM60", + "L1_DoubleMu0_ETM65", + "L1_DoubleMu0_ETM70", + "L1_DoubleMu0er1p4_dEta_Max1p8_OS", + "L1_DoubleMu0er1p6_dEta_Max1p8", + "L1_DoubleMu0er1p6_dEta_Max1p8_OS", + "L1_DoubleMu7_EG14", + "L1_DoubleMu7_EG7", + "L1_DoubleMuOpen", + "L1_DoubleMu_10_0_dEta_Max1p8", + "L1_DoubleMu_10_3p5", + "L1_DoubleMu_10_Open", + "L1_DoubleMu_11_4", + "L1_DoubleMu_12_5", + "L1_DoubleMu_12_8", + "L1_DoubleMu_13_6", + "L1_DoubleMu_15_5", + "L1_DoubleTau50er", + "L1_DoubleTau70er", + "L1_EG25er_HTT125", + "L1_EG27er_HTT200", + "L1_ETM100", + "L1_ETM105", + "L1_ETM110", + "L1_ETM115", + "L1_ETM120", + "L1_ETM30", + "L1_ETM40", + "L1_ETM50", + "L1_ETM60", + "L1_ETM70", + "L1_ETM75", + "L1_ETM75_Jet60_dPhi_Min0p4", + "L1_ETM80", + "L1_ETM85", + "L1_ETM90", + "L1_ETM95", + "L1_ETT25", + "L1_ETT40_BptxAND", + "L1_ETT50_BptxAND", + "L1_ETT55_BptxAND", + "L1_ETT60_BptxAND", + "L1_ETT70_BptxAND", + "L1_ETT75_BptxAND", + "L1_FirstBunchAfterTrain", + "L1_FirstBunchInTrain", + "L1_HTM100", + "L1_HTM120", + "L1_HTM130", + "L1_HTM140", + "L1_HTM150", + "L1_HTM50", + "L1_HTM60_HTT260", + "L1_HTM70", + "L1_HTM80", + "L1_HTM80_HTT220", + "L1_HTT120", + "L1_HTT160", + "L1_HTT200", + "L1_HTT220", + "L1_HTT240", + "L1_HTT255", + "L1_HTT270", + "L1_HTT280", + "L1_HTT300", + "L1_HTT320", + "L1_IsoEG18er_IsoTau24er_dEta_Min0p2", + "L1_IsoEG20er_IsoTau25er_dEta_Min0p2", + "L1_IsoEG22er_IsoTau26er_dEta_Min0p2", + "L1_IsoEG22er_Tau20er_dEta_Min0p2", + "L1_IsolatedBunch", + "L1_Jet32_DoubleMu_10_0_dPhi_Jet_Mu0_Max0p4_dPhi_Mu_Mu_Min1p0", + "L1_Jet32_Mu0_EG10_dPhi_Jet_Mu_Max0p4_dPhi_Mu_EG_Min1p0", + "L1_MU20_EG15", + "L1_MinimumBiasHF0_AND", + "L1_MinimumBiasHF0_AND_BptxAND", + "L1_MinimumBiasHF0_OR", + "L1_MinimumBiasHF0_OR_BptxAND", + "L1_MinimumBiasHF1_AND", + "L1_MinimumBiasHF1_AND_BptxAND", + "L1_MinimumBiasHF1_OR", + "L1_MinimumBiasHF1_OR_BptxAND", + "L1_Mu0er_ETM40", + "L1_Mu0er_ETM55", + "L1_Mu10er_ETM30", + "L1_Mu10er_ETM50", + "L1_Mu12_EG10", + "L1_Mu14er_ETM30", + "L1_Mu16er_Tau20er", + "L1_Mu16er_Tau24er", + "L1_Mu18er_IsoTau26er", + "L1_Mu18er_Tau20er", + "L1_Mu18er_Tau24er", + "L1_Mu20_EG10", + "L1_Mu20_EG17", + "L1_Mu20_IsoEG6", + "L1_Mu20er_IsoTau26er", + "L1_Mu22er_IsoTau26er", + "L1_Mu23_EG10", + "L1_Mu23_IsoEG10", + "L1_Mu25er_IsoTau26er", + "L1_Mu3_JetC120", + "L1_Mu3_JetC120_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC16", + "L1_Mu3_JetC16_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu3_JetC60", + "L1_Mu3_JetC60_dEta_Max0p4_dPhi_Max0p4", + "L1_Mu5_EG15", + "L1_Mu5_EG20", + "L1_Mu5_EG23", + "L1_Mu5_IsoEG18", + "L1_Mu5_IsoEG20", + "L1_Mu6_DoubleEG10", + "L1_Mu6_DoubleEG17", + "L1_Mu6_HTT200", + "L1_Mu8_HTT150", + "L1_NotBptxOR", + "L1_QuadJetC36_Tau52", + "L1_QuadJetC40", + "L1_QuadJetC50", + "L1_QuadJetC60", + "L1_QuadMu0", + "L1_SingleEG10", + "L1_SingleEG15", + "L1_SingleEG18", + "L1_SingleEG24", + "L1_SingleEG26", + "L1_SingleEG28", + "L1_SingleEG2_BptxAND", + "L1_SingleEG30", + "L1_SingleEG32", + "L1_SingleEG34", + "L1_SingleEG36", + "L1_SingleEG38", + "L1_SingleEG40", + "L1_SingleEG45", + "L1_SingleEG5", + "L1_SingleIsoEG18", + "L1_SingleIsoEG18er", + "L1_SingleIsoEG20", + "L1_SingleIsoEG20er", + "L1_SingleIsoEG22", + "L1_SingleIsoEG22er", + "L1_SingleIsoEG24", + "L1_SingleIsoEG24er", + "L1_SingleIsoEG26", + "L1_SingleIsoEG26er", + "L1_SingleIsoEG28", + "L1_SingleIsoEG28er", + "L1_SingleIsoEG30", + "L1_SingleIsoEG30er", + "L1_SingleIsoEG32", + "L1_SingleIsoEG32er", + "L1_SingleIsoEG34", + "L1_SingleIsoEG34er", + "L1_SingleIsoEG36", + "L1_SingleJet120", + "L1_SingleJet12_BptxAND", + "L1_SingleJet140", + "L1_SingleJet150", + "L1_SingleJet16", + "L1_SingleJet160", + "L1_SingleJet170", + "L1_SingleJet180", + "L1_SingleJet20", + "L1_SingleJet200", + "L1_SingleJet35", + "L1_SingleJet60", + "L1_SingleJet8_BptxAND", + "L1_SingleJet90", + "L1_SingleJetC20_NotBptxOR", + "L1_SingleJetC20_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_3BX", + "L1_SingleJetC40_NotBptxOR_5BX", + "L1_SingleMu10_LowQ", + "L1_SingleMu12", + "L1_SingleMu14", + "L1_SingleMu14er", + "L1_SingleMu16", + "L1_SingleMu16er", + "L1_SingleMu18", + "L1_SingleMu18er", + "L1_SingleMu20", + "L1_SingleMu20er", + "L1_SingleMu22", + "L1_SingleMu22er", + "L1_SingleMu25", + "L1_SingleMu25er", + "L1_SingleMu3", + "L1_SingleMu30", + "L1_SingleMu30er", + "L1_SingleMu5", + "L1_SingleMu7", + "L1_SingleMuCosmics", + "L1_SingleMuOpen", + "L1_SingleMuOpen_NotBptxOR", + "L1_SingleMuOpen_NotBptxOR_3BX", + "L1_SingleTau100er", + "L1_SingleTau120er", + "L1_SingleTau80er", + "L1_TripleEG_14_10_8", + "L1_TripleEG_18_17_8", + "L1_TripleJet_84_68_48_VBF", + "L1_TripleJet_88_72_56_VBF", + "L1_TripleJet_92_76_64_VBF", + "L1_TripleMu0", + "L1_TripleMu_5_0_0", + "L1_TripleMu_5_5_3", + "L1_ZeroBias", + "L1_ZeroBias_FirstCollidingBunch", + "L1_ZeroBias_copy", + "L1_UnprefireableEvent" + ] + }, + "Flag": { + "name": "Flag", + "doc": "Trigger/flag bit (process: PAT)", + "kind": "Singleton", + "tot": 3940.8046875, + "entries": 2160343, + "subs": [ + "Flag_HBHENoiseFilter", + "Flag_HBHENoiseIsoFilter", + "Flag_CSCTightHaloFilter", + "Flag_CSCTightHaloTrkMuUnvetoFilter", + "Flag_CSCTightHalo2015Filter", + "Flag_globalTightHalo2016Filter", + "Flag_globalSuperTightHalo2016Filter", + "Flag_HcalStripHaloFilter", + "Flag_hcalLaserEventFilter", + "Flag_EcalDeadCellTriggerPrimitiveFilter", + "Flag_EcalDeadCellBoundaryEnergyFilter", + "Flag_ecalBadCalibFilter", + "Flag_goodVertices", + "Flag_eeBadScFilter", + "Flag_ecalLaserCorrFilter", + "Flag_trkPOGFilters", + "Flag_chargedHadronTrackResolutionFilter", + "Flag_muonBadTrackFilter", + "Flag_BadChargedCandidateFilter", + "Flag_BadPFMuonFilter", + "Flag_BadPFMuonDzFilter", + "Flag_hfNoisyHitsFilter", + "Flag_BadChargedCandidateSummer16Filter", + "Flag_BadPFMuonSummer16Filter", + "Flag_trkPOG_manystripclus53X", + "Flag_trkPOG_toomanystripclus53X", + "Flag_trkPOG_logErrorTooManyClusters", + "Flag_METFilters", + "Flag_HBHENoiseFilter_pRECO", + "Flag_HBHENoiseIsoFilter_pRECO", + "Flag_CSCTightHaloFilter_pRECO", + "Flag_CSCTightHaloTrkMuUnvetoFilter_pRECO", + "Flag_CSCTightHalo2015Filter_pRECO", + "Flag_globalTightHalo2016Filter_pRECO", + "Flag_globalSuperTightHalo2016Filter_pRECO", + "Flag_HcalStripHaloFilter_pRECO", + "Flag_hcalLaserEventFilter_pRECO", + "Flag_EcalDeadCellTriggerPrimitiveFilter_pRECO", + "Flag_EcalDeadCellBoundaryEnergyFilter_pRECO", + "Flag_ecalBadCalibFilter_pRECO", + "Flag_goodVertices_pRECO", + "Flag_eeBadScFilter_pRECO", + "Flag_ecalLaserCorrFilter_pRECO", + "Flag_trkPOGFilters_pRECO", + "Flag_chargedHadronTrackResolutionFilter_pRECO", + "Flag_muonBadTrackFilter_pRECO", + "Flag_BadChargedCandidateFilter_pRECO", + "Flag_BadPFMuonFilter_pRECO", + "Flag_BadChargedCandidateSummer16Filter_pRECO", + "Flag_BadPFMuonSummer16Filter_pRECO", + "Flag_trkPOG_manystripclus53X_pRECO", + "Flag_trkPOG_toomanystripclus53X_pRECO", + "Flag_trkPOG_logErrorTooManyClusters_pRECO", + "Flag_METFilters_pRECO" + ] + }, + "L1Reco": { + "name": "L1Reco", + "doc": "Trigger/flag bit (process: RECO)", + "kind": "Variable", + "tot": 51.275390625, + "entries": 2160343, + "subs": [ + "L1Reco_step" + ] + }, + "HLTriggerFirstPath": { + "name": "HLTriggerFirstPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 53.17578125, + "entries": 2160343, + "subs": [ + "HLTriggerFirstPath" + ] + }, + "HLT": { + "name": "HLT", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Singleton", + "tot": 41004.44921875, + "entries": 2160343, + "subs": [ + "HLT_AK8PFJet360_TrimMass30", + "HLT_AK8PFJet400_TrimMass30", + "HLT_AK8PFHT750_TrimMass50", + "HLT_AK8PFHT800_TrimMass50", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30_BTagCSV_p087", + "HLT_AK8DiPFJet300_200_TrimMass30", + "HLT_AK8PFHT700_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT650_TrimR0p1PT0p03Mass50", + "HLT_AK8PFHT600_TrimR0p1PT0p03Mass50_BTagCSV_p20", + "HLT_AK8DiPFJet280_200_TrimMass30", + "HLT_AK8DiPFJet250_200_TrimMass30", + "HLT_AK8DiPFJet280_200_TrimMass30_BTagCSV_p20", + "HLT_AK8DiPFJet250_200_TrimMass30_BTagCSV_p20", + "HLT_CaloJet500_NoJetID", + "HLT_Dimuon13_PsiPrime", + "HLT_Dimuon13_Upsilon", + "HLT_Dimuon20_Jpsi", + "HLT_DoubleEle24_22_eta2p1_WPLoose_Gsf", + "HLT_DoubleEle33_CaloIdL", + "HLT_DoubleEle33_CaloIdL_MW", + "HLT_DoubleEle33_CaloIdL_GsfTrkIdVL_MW", + "HLT_DoubleMediumCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau35_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1_Reg", + "HLT_DoubleMediumCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleTightCombinedIsoPFTau40_Trk1_eta2p1", + "HLT_DoubleEle37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_DoubleMu33NoFiltersNoVtx", + "HLT_DoubleMu38NoFiltersNoVtx", + "HLT_DoubleMu23NoFiltersNoVtxDisplaced", + "HLT_DoubleMu28NoFiltersNoVtxDisplaced", + "HLT_DoubleMu0", + "HLT_DoubleMu4_3_Bs", + "HLT_DoubleMu4_3_Jpsi_Displaced", + "HLT_DoubleMu4_JpsiTrk_Displaced", + "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", + "HLT_DoubleMu3_Trk_Tau3mu", + "HLT_DoubleMu4_PsiPrimeTrk_Displaced", + "HLT_Mu7p5_L2Mu2_Jpsi", + "HLT_Mu7p5_L2Mu2_Upsilon", + "HLT_Mu7p5_Track2_Jpsi", + "HLT_Mu7p5_Track3p5_Jpsi", + "HLT_Mu7p5_Track7_Jpsi", + "HLT_Mu7p5_Track2_Upsilon", + "HLT_Mu7p5_Track3p5_Upsilon", + "HLT_Mu7p5_Track7_Upsilon", + "HLT_Dimuon0er16_Jpsi_NoOS_NoVertexing", + "HLT_Dimuon6_Jpsi_NoVertexing", + "HLT_DoublePhoton60", + "HLT_DoublePhoton85", + "HLT_Ele20_eta2p1_WPLoose_Gsf_LooseIsoPFTau28", + "HLT_Ele22_eta2p1_WPLoose_Gsf_LooseIsoPFTau29", + "HLT_Ele22_eta2p1_WPLoose_Gsf", + "HLT_Ele24_eta2p1_WPLoose_Gsf_LooseIsoPFTau30", + "HLT_Ele25_WPTight_Gsf", + "HLT_Ele25_eta2p1_WPTight_Gsf", + "HLT_Ele27_WPLoose_Gsf_WHbbBoost", + "HLT_Ele27_WPTight_Gsf", + "HLT_Ele27_WPTight_Gsf_L1JetTauSeeded", + "HLT_Ele27_eta2p1_WPLoose_Gsf", + "HLT_Ele27_eta2p1_WPTight_Gsf", + "HLT_Ele30_WPTight_Gsf", + "HLT_Ele30_eta2p1_WPTight_Gsf", + "HLT_Ele32_WPTight_Gsf", + "HLT_Ele32_eta2p1_WPTight_Gsf", + "HLT_Ele36_eta2p1_WPLoose_Gsf_LooseIsoPFTau20_SingleL1", + "HLT_Ele45_CaloIdVT_GsfTrkIdT_PFJet200_PFJet50", + "HLT_Ele105_CaloIdVT_GsfTrkIdT", + "HLT_HT200", + "HLT_HT275", + "HLT_HT325", + "HLT_HT425", + "HLT_HT575", + "HLT_HT430to450", + "HLT_HT450to470", + "HLT_HT470to500", + "HLT_HT500to550", + "HLT_HT550to650", + "HLT_HT650", + "HLT_IsoMu16_eta2p1_MET30", + "HLT_IsoMu16_eta2p1_MET30_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_DoubleIsoMu17_eta2p1_noDzCut", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20", + "HLT_IsoMu19_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu19_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_LooseCombinedIsoPFTau20", + "HLT_IsoMu19_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu19_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_MediumCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu21_eta2p1_TightCombinedIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu20", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau20_SingleL1", + "HLT_IsoMu21_eta2p1_LooseIsoPFTau50_Trk30_eta2p1_SingleL1", + "HLT_IsoMu21_eta2p1_MediumIsoPFTau32_Trk1_eta2p1_Reg", + "HLT_IsoMu22", + "HLT_IsoMu22_eta2p1", + "HLT_IsoMu24", + "HLT_IsoMu24_eta2p1", + "HLT_IsoMu27", + "HLT_IsoTkMu20", + "HLT_IsoTkMu22", + "HLT_IsoTkMu22_eta2p1", + "HLT_IsoTkMu24", + "HLT_IsoTkMu24_eta2p1", + "HLT_IsoTkMu27", + "HLT_JetE30_NoBPTX3BX", + "HLT_JetE30_NoBPTX", + "HLT_JetE50_NoBPTX3BX", + "HLT_JetE70_NoBPTX3BX", + "HLT_L1SingleMu18", + "HLT_L2Mu10", + "HLT_L2DoubleMu23_NoVertex", + "HLT_L2DoubleMu28_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2DoubleMu38_NoVertex_2Cha_Angle2p5_Mass10", + "HLT_L2Mu10_NoVertex_NoBPTX3BX", + "HLT_L2Mu10_NoVertex_NoBPTX", + "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", + "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", + "HLT_LooseIsoPFTau50_Trk30_eta2p1", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET90", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET110", + "HLT_LooseIsoPFTau50_Trk30_eta2p1_MET120", + "HLT_PFTau120_eta2p1", + "HLT_PFTau140_eta2p1", + "HLT_VLooseIsoPFTau120_Trk50_eta2p1", + "HLT_VLooseIsoPFTau140_Trk50_eta2p1", + "HLT_Mu17_Mu8", + "HLT_Mu17_Mu8_DZ", + "HLT_Mu17_Mu8_SameSign", + "HLT_Mu17_Mu8_SameSign_DZ", + "HLT_Mu20_Mu10", + "HLT_Mu20_Mu10_DZ", + "HLT_Mu20_Mu10_SameSign", + "HLT_Mu20_Mu10_SameSign_DZ", + "HLT_Mu17_TkMu8_DZ", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_Mu25_TkMu0_dEta18_Onia", + "HLT_Mu27_TkMu8", + "HLT_Mu30_TkMu11", + "HLT_Mu30_eta2p1_PFJet150_PFJet50", + "HLT_Mu40_TkMu11", + "HLT_Mu40_eta2p1_PFJet200_PFJet50", + "HLT_Mu20", + "HLT_TkMu17", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL", + "HLT_TkMu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ", + "HLT_TkMu20", + "HLT_Mu24_eta2p1", + "HLT_TkMu24_eta2p1", + "HLT_Mu27", + "HLT_TkMu27", + "HLT_Mu45_eta2p1", + "HLT_Mu50", + "HLT_TkMu50", + "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL", + "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL", + "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL", + "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL", + "HLT_Mu23NoFiltersNoVtx_Photon23_CaloIdL", + "HLT_DoubleMu18NoFiltersNoVtx", + "HLT_Mu28NoFiltersNoVtx_DisplacedJet40_Loose", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Tight", + "HLT_Mu38NoFiltersNoVtxDisplaced_DisplacedJet60_Loose", + "HLT_Mu38NoFiltersNoVtx_DisplacedJet60_Loose", + "HLT_Mu28NoFiltersNoVtx_CentralCaloJet40", + "HLT_PFHT300_PFMET110", + "HLT_PFHT550_4JetPt50", + "HLT_PFHT650_4JetPt50", + "HLT_PFHT750_4JetPt70", + "HLT_PFHT750_4JetPt80", + "HLT_PFHT800_4JetPt50", + "HLT_PFHT850_4JetPt50", + "HLT_PFJet15_NoCaloMatched", + "HLT_PFJet25_NoCaloMatched", + "HLT_DiPFJet15_NoCaloMatched", + "HLT_DiPFJet25_NoCaloMatched", + "HLT_DiPFJet15_FBEta3_NoCaloMatched", + "HLT_DiPFJet25_FBEta3_NoCaloMatched", + "HLT_DiPFJetAve15_HFJEC", + "HLT_DiPFJetAve25_HFJEC", + "HLT_DiPFJetAve35_HFJEC", + "HLT_AK8PFJet40", + "HLT_AK8PFJet60", + "HLT_AK8PFJet80", + "HLT_AK8PFJet140", + "HLT_AK8PFJet200", + "HLT_AK8PFJet260", + "HLT_AK8PFJet320", + "HLT_AK8PFJet400", + "HLT_AK8PFJet450", + "HLT_AK8PFJet500", + "HLT_PFJet40", + "HLT_PFJet60", + "HLT_PFJet80", + "HLT_PFJet140", + "HLT_PFJet200", + "HLT_PFJet260", + "HLT_PFJet320", + "HLT_PFJet400", + "HLT_PFJet450", + "HLT_PFJet500", + "HLT_DiPFJetAve40", + "HLT_DiPFJetAve60", + "HLT_DiPFJetAve80", + "HLT_DiPFJetAve140", + "HLT_DiPFJetAve200", + "HLT_DiPFJetAve260", + "HLT_DiPFJetAve320", + "HLT_DiPFJetAve400", + "HLT_DiPFJetAve500", + "HLT_DiPFJetAve60_HFJEC", + "HLT_DiPFJetAve80_HFJEC", + "HLT_DiPFJetAve100_HFJEC", + "HLT_DiPFJetAve160_HFJEC", + "HLT_DiPFJetAve220_HFJEC", + "HLT_DiPFJetAve300_HFJEC", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu140", + "HLT_DiPFJet40_DEta3p5_MJJ600_PFMETNoMu80", + "HLT_DiCentralPFJet170", + "HLT_SingleCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet170_CFMax0p1", + "HLT_DiCentralPFJet330_CFMax0p5", + "HLT_DiCentralPFJet430", + "HLT_DiJetVBF_PassThrough", + "HLT_DiJetVBFMu_PassThrough", + "HLT_PFHT125", + "HLT_PFHT200", + "HLT_PFHT250", + "HLT_PFHT300", + "HLT_PFHT350", + "HLT_PFHT400", + "HLT_PFHT475", + "HLT_PFHT600", + "HLT_PFHT650", + "HLT_PFHT900", + "HLT_PFHT200_PFAlphaT0p51", + "HLT_PFHT200_DiPFJetAve90_PFAlphaT0p63", + "HLT_PFHT250_DiPFJetAve90_PFAlphaT0p58", + "HLT_PFHT300_DiPFJetAve90_PFAlphaT0p54", + "HLT_PFHT350_DiPFJetAve90_PFAlphaT0p53", + "HLT_PFHT400_DiPFJetAve90_PFAlphaT0p52", + "HLT_MET60_IsoTrk35_Loose", + "HLT_MET75_IsoTrk50", + "HLT_MET90_IsoTrk50", + "HLT_PFMET170_NotCleaned", + "HLT_PFMET170_HBHECleaned", + "HLT_PFMET170_BeamHaloCleaned", + "HLT_PFMET170_HBHE_BeamHaloCleaned", + "HLT_PFMETTypeOne190_HBHE_BeamHaloCleaned", + "HLT_PFMET110_PFMHT110_IDTight", + "HLT_PFMET120_PFMHT120_IDTight", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight_BTagCSV_p067", + "HLT_CaloMHTNoPU90_PFMET90_PFMHT90_IDTight", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq200", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq460", + "HLT_QuadPFJet_BTagCSV_p016_p11_VBF_Mqq240", + "HLT_QuadPFJet_BTagCSV_p016_VBF_Mqq500", + "HLT_QuadPFJet_VBF", + "HLT_L1_TripleJet_VBF", + "HLT_QuadJet45_TripleBTagCSV_p087", + "HLT_QuadJet45_DoubleBTagCSV_p087", + "HLT_DoubleJet90_Double30_TripleBTagCSV_p087", + "HLT_DoubleJet90_Double30_DoubleBTagCSV_p087", + "HLT_DoubleJetsC100_DoubleBTagCSV_p026_DoublePFJetsC160", + "HLT_DoubleJetsC100_DoubleBTagCSV_p014_DoublePFJetsC100MaxDeta1p6", + "HLT_DoubleJetsC112_DoubleBTagCSV_p026_DoublePFJetsC172", + "HLT_DoubleJetsC112_DoubleBTagCSV_p014_DoublePFJetsC112MaxDeta1p6", + "HLT_DoubleJetsC100_SingleBTagCSV_p026", + "HLT_DoubleJetsC100_SingleBTagCSV_p014", + "HLT_DoubleJetsC100_SingleBTagCSV_p026_SinglePFJetC350", + "HLT_DoubleJetsC100_SingleBTagCSV_p014_SinglePFJetC350", + "HLT_Photon135_PFMET100", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon22_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon250_NoHE", + "HLT_Photon300_NoHE", + "HLT_Photon26_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon16_AND_HE10_R9Id65_Eta2_Mass60", + "HLT_Photon36_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon22_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon36_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon50_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon75_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon90_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_PFMET40", + "HLT_Photon120_R9Id90_HE10_Iso40_EBOnly_VBF", + "HLT_Mu8_TrkIsoVVL", + "HLT_Mu17_TrkIsoVVL", + "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", + "HLT_BTagMu_DiJet20_Mu5", + "HLT_BTagMu_DiJet40_Mu5", + "HLT_BTagMu_DiJet70_Mu5", + "HLT_BTagMu_DiJet110_Mu5", + "HLT_BTagMu_DiJet170_Mu5", + "HLT_BTagMu_Jet300_Mu5", + "HLT_BTagMu_AK8Jet300_Mu5", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_L1JetTauSeeded", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", + "HLT_Mu8_TrkIsoVVL_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu17_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele8_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", + "HLT_Mu33_Ele33_CaloIdL_GsfTrkIdVL", + "HLT_Mu37_Ele27_CaloIdL_GsfTrkIdVL", + "HLT_Mu27_Ele37_CaloIdL_GsfTrkIdVL", + "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", + "HLT_Mu12_Photon25_CaloIdL", + "HLT_Mu12_Photon25_CaloIdL_L1ISO", + "HLT_Mu12_Photon25_CaloIdL_L1OR", + "HLT_Mu17_Photon30_CaloIdL_L1ISO", + "HLT_Mu17_Photon35_CaloIdL_L1ISO", + "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", + "HLT_TripleMu_5_3_3_DZ_Mass3p8", + "HLT_TripleMu_12_10_5", + "HLT_Mu6_PFHT200_PFMET100", + "HLT_Ele17_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele12_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele17_CaloIdL_GsfTrkIdVL", + "HLT_Ele17_CaloIdL_TrackIdL_IsoVL", + "HLT_Ele23_CaloIdL_TrackIdL_IsoVL", + "HLT_PFHT650_WideJetMJJ900DEtaJJ1p5", + "HLT_PFHT650_WideJetMJJ950DEtaJJ1p5", + "HLT_Photon22", + "HLT_Photon30", + "HLT_Photon36", + "HLT_Photon50", + "HLT_Photon75", + "HLT_Photon90", + "HLT_Photon120", + "HLT_Photon175", + "HLT_Photon165_HE10", + "HLT_Photon22_R9Id90_HE10_IsoM", + "HLT_Photon30_R9Id90_HE10_IsoM", + "HLT_Photon36_R9Id90_HE10_IsoM", + "HLT_Photon50_R9Id90_HE10_IsoM", + "HLT_Photon75_R9Id90_HE10_IsoM", + "HLT_Photon90_R9Id90_HE10_IsoM", + "HLT_Photon120_R9Id90_HE10_IsoM", + "HLT_Photon165_R9Id90_HE10_IsoM", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", + "HLT_Diphoton30_18_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelSeedMatch_Mass70", + "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Diphoton30_18_Solid_R9Id_AND_IsoCaloId_AND_HE_R9Id_Mass55", + "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_DoublePixelVeto_Mass55", + "HLT_Dimuon0_Jpsi_Muon", + "HLT_Dimuon0_Upsilon_Muon", + "HLT_QuadMuon0_Dimuon0_Jpsi", + "HLT_QuadMuon0_Dimuon0_Upsilon", + "HLT_Rsq0p25", + "HLT_Rsq0p30", + "HLT_RsqMR270_Rsq0p09_MR200", + "HLT_RsqMR270_Rsq0p09_MR200_4jet", + "HLT_Rsq0p02_MR400_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR450_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR500_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_Rsq0p02_MR550_TriPFJet80_60_40_DoubleBTagCSV_p063_Mbb60_200", + "HLT_HT250_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_DisplacedTrack", + "HLT_HT350_DisplacedDijet80_Tight_DisplacedTrack", + "HLT_HT350_DisplacedDijet40_Inclusive", + "HLT_HT550_DisplacedDijet80_Inclusive", + "HLT_HT650_DisplacedDijet80_Inclusive", + "HLT_HT750_DisplacedDijet80_Inclusive", + "HLT_VBF_DisplacedJet40_DisplacedTrack", + "HLT_VBF_DisplacedJet40_DisplacedTrack_2TrackIP2DSig5", + "HLT_VBF_DisplacedJet40_TightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_TightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VVTightID_Hadronic", + "HLT_VBF_DisplacedJet40_VTightID_DisplacedTrack", + "HLT_VBF_DisplacedJet40_VVTightID_DisplacedTrack", + "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", + "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", + "HLT_Ele27_eta2p1_WPLoose_Gsf_HT200", + "HLT_DoubleMu8_Mass8_PFHT300", + "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT300", + "HLT_Mu10_CentralPFJet30_BTagCSV_p13", + "HLT_DoubleMu3_PFMET50", + "HLT_Ele10_CaloIdM_TrackIdM_CentralPFJet30_BTagCSV_p13", + "HLT_Ele15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Ele15_IsoVVVL_PFHT600", + "HLT_Ele15_IsoVVVL_PFHT400_PFMET50", + "HLT_Ele15_IsoVVVL_PFHT400", + "HLT_Ele50_IsoVVVL_PFHT400", + "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", + "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", + "HLT_Mu15_IsoVVVL_BTagCSV_p067_PFHT400", + "HLT_Mu15_IsoVVVL_PFHT600", + "HLT_Mu15_IsoVVVL_PFHT400_PFMET50", + "HLT_Mu15_IsoVVVL_PFHT400", + "HLT_Mu50_IsoVVVL_PFHT400", + "HLT_Dimuon16_Jpsi", + "HLT_Dimuon8_PsiPrime_Barrel", + "HLT_Dimuon8_Upsilon_Barrel", + "HLT_Dimuon0_Phi_Barrel", + "HLT_TrkMu15_DoubleTrkMu5NoFiltersNoVtx", + "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", + "HLT_Mu8", + "HLT_Mu17", + "HLT_Mu3_PFJet40", + "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele12_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", + "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", + "HLT_PFHT400_SixJet30_DoubleBTagCSV_p056", + "HLT_PFHT450_SixJet40_BTagCSV_p056", + "HLT_PFHT400_SixJet30", + "HLT_PFHT450_SixJet40", + "HLT_Ele115_CaloIdVT_GsfTrkIdT", + "HLT_Ele145_CaloIdVT_GsfTrkIdT", + "HLT_Ele200_CaloIdVT_GsfTrkIdT", + "HLT_Mu55", + "HLT_Photon42_R9Id85_OR_CaloId24b40e_Iso50T80L_Photon25_AND_HE10_R9Id65_Eta2_Mass15", + "HLT_Photon90_CaloIdL_PFHT600", + "HLT_FullTracks_Multiplicity80", + "HLT_FullTracks_Multiplicity100", + "HLT_FullTracks_Multiplicity130", + "HLT_FullTracks_Multiplicity150", + "HLT_ECALHT800", + "HLT_DiSC30_18_EIso_AND_HE_Mass70", + "HLT_MET200", + "HLT_Ele27_HighEta_Ele20_Mass55", + "HLT_L1FatEvents", + "HLT_Physics", + "HLT_L1FatEvents_part0", + "HLT_L1FatEvents_part1", + "HLT_L1FatEvents_part2", + "HLT_L1FatEvents_part3", + "HLT_Random", + "HLT_ZeroBias", + "HLT_AK4CaloJet30", + "HLT_AK4CaloJet40", + "HLT_AK4CaloJet50", + "HLT_AK4CaloJet80", + "HLT_AK4CaloJet100", + "HLT_AK4PFJet30", + "HLT_AK4PFJet50", + "HLT_AK4PFJet80", + "HLT_AK4PFJet100", + "HLT_HISinglePhoton10", + "HLT_HISinglePhoton15", + "HLT_HISinglePhoton20", + "HLT_HISinglePhoton40", + "HLT_HISinglePhoton60", + "HLT_EcalCalibration", + "HLT_HcalCalibration", + "HLT_GlobalRunHPDNoise", + "HLT_L1BptxMinus", + "HLT_L1BptxPlus", + "HLT_L1NotBptxOR", + "HLT_L1MinimumBiasHF_OR_part0", + "HLT_L1MinimumBiasHF_OR_part1", + "HLT_L1MinimumBiasHF_OR_part2", + "HLT_L1MinimumBiasHF_OR_part3", + "HLT_L1MinimumBiasHF_OR_part4", + "HLT_L1MinimumBiasHF_OR_part5", + "HLT_L1MinimumBiasHF_OR_part6", + "HLT_L1MinimumBiasHF_OR_part7", + "HLT_L1MinimumBiasHF_OR_part8", + "HLT_L1MinimumBiasHF_OR_part9", + "HLT_L1MinimumBiasHF_AND", + "HLT_HcalNZS", + "HLT_HcalPhiSym", + "HLT_HcalIsolatedbunch", + "HLT_ZeroBias_FirstCollisionAfterAbortGap", + "HLT_ZeroBias_FirstCollisionAfterAbortGap_copy", + "HLT_ZeroBias_IsolatedBunches", + "HLT_ZeroBias_FirstCollisionInTrain", + "HLT_ZeroBias_FirstBXAfterTrain", + "HLT_Photon500", + "HLT_Photon600", + "HLT_Mu300", + "HLT_Mu350", + "HLT_MET250", + "HLT_MET300", + "HLT_MET600", + "HLT_MET700", + "HLT_PFMET300", + "HLT_PFMET400", + "HLT_PFMET500", + "HLT_PFMET600", + "HLT_Ele250_CaloIdVT_GsfTrkIdT", + "HLT_Ele300_CaloIdVT_GsfTrkIdT", + "HLT_HT2000", + "HLT_HT2500", + "HLT_IsoTrackHE", + "HLT_IsoTrackHB" + ] + }, + "HLTriggerFinalPath": { + "name": "HLTriggerFinalPath", + "doc": "Trigger/flag bit (process: HLT)", + "kind": "Variable", + "tot": 53.17578125, + "entries": 2160343, + "subs": [ + "HLTriggerFinalPath" + ] + } + } + }, + "Runs": { + "entries": 4, + "allsize": 0.083984375, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.083984375, + "entries": 4, + "single": true, + "kind": "UInt_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.083984375, + "entries": 4, + "subs": [ + "run" + ] + } + } + }, + "LuminosityBlocks": { + "entries": 1219, + "allsize": 1.8525390625, + "branches": { + "run": { + "name": "run", + "doc": "run/i", + "tot": 0.1865234375, + "entries": 1219, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "tot": 1.0458984375, + "entries": 1219, + "single": true, + "kind": "UInt_t", + "counter": "" + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "tot": 0.2080078125, + "entries": 1219, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "tot": 0.203125, + "entries": 1219, + "single": true, + "kind": "Double_t", + "counter": "" + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "tot": 0.208984375, + "entries": 1219, + "single": true, + "kind": "Double_t", + "counter": "" + } + }, + "branchgroups": { + "run": { + "name": "run", + "doc": "run/i", + "kind": "Variable", + "tot": 0.1865234375, + "entries": 1219, + "subs": [ + "run" + ] + }, + "luminosityBlock": { + "name": "luminosityBlock", + "doc": "luminosityBlock/i", + "kind": "Variable", + "tot": 1.0458984375, + "entries": 1219, + "subs": [ + "luminosityBlock" + ] + }, + "crossingAngle": { + "name": "crossingAngle", + "doc": "LHC crossing angle", + "kind": "Variable", + "tot": 0.2080078125, + "entries": 1219, + "subs": [ + "crossingAngle" + ] + }, + "betaStar": { + "name": "betaStar", + "doc": "LHC beta star", + "kind": "Variable", + "tot": 0.203125, + "entries": 1219, + "subs": [ + "betaStar" + ] + }, + "energy": { + "name": "energy", + "doc": "LHC beam energy", + "kind": "Variable", + "tot": 0.208984375, + "entries": 1219, + "subs": [ + "energy" + ] + } + } + } + } +} \ No newline at end of file diff --git a/cms-2016-collision-datasets/outputs/reco_config_files_link_info.py b/cms-2016-collision-datasets/outputs/reco_config_files_link_info.py index 71e868a83..9ca4aeb69 100644 --- a/cms-2016-collision-datasets/outputs/reco_config_files_link_info.py +++ b/cms-2016-collision-datasets/outputs/reco_config_files_link_info.py @@ -9,72 +9,122 @@ 'ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_JMENanoAODv9': 30407, 'ReReco-Run2016H-JetHT-UL2016_MiniAODv2_JMENanoAODv9': 30408, 'ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_JMENanoAODv9': 30409, - 'ReReco-Run2016H-BTagCSV-UL2016_MiniAODv2_NanoAODv9': 30410, - 'ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_NanoAODv9': 30411, - 'ReReco-Run2016G-HTMHT-UL2016_MiniAODv2_NanoAODv9': 30412, - 'ReReco-Run2016H-DisplacedJet-UL2016_MiniAODv2_NanoAODv9': 30413, - 'ReReco-Run2016H-BTagMu-UL2016_MiniAODv2_NanoAODv9': 30414, - 'ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_NanoAODv9': 30415, - 'ReReco-Run2016H-BTagCSV-UL2016_MiniAODv2': 30416, - 'ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2': 30417, - 'ReReco-Run2016G-Tau-UL2016_MiniAODv2_NanoAODv9': 30418, - 'ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_NanoAODv9': 30419, - 'ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_NanoAODv9': 30420, - 'ReReco-Run2016H-Charmonium-UL2016_MiniAODv2': 30421, - 'ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2': 30422, - 'ReReco-Run2016H-MuOnia-UL2016_MiniAODv2': 30423, - 'ReReco-Run2016H-JetHT-UL2016_MiniAODv2': 30424, - 'ReReco-Run2016G-JetHT-UL2016_MiniAODv2': 30425, - 'ReReco-Run2016G-BTagCSV-UL2016_MiniAODv2': 30426, - 'ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2': 30427, - 'ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2': 30428, - 'ReReco-Run2016G-Tau-UL2016_MiniAODv2': 30429, - 'ReReco-Run2016H-Tau-UL2016_MiniAODv2': 30430, - 'ReReco-Run2016G-BTagMu-UL2016_MiniAODv2': 30431, - 'ReReco-Run2016G-HTMHT-UL2016_MiniAODv2': 30432, - 'ReReco-Run2016H-BTagMu-UL2016_MiniAODv2': 30433, - 'ReReco-Run2016H-HTMHT-UL2016_MiniAODv2': 30434, - 'ReReco-Run2016H-HTMHT-UL2016_MiniAODv2_NanoAODv9': 30435, - 'ReReco-Run2016G-DisplacedJet-UL2016_MiniAODv2_NanoAODv9': 30436, - 'ReReco-Run2016H-JetHT-UL2016_MiniAODv2_NanoAODv9': 30437, - 'ReReco-Run2016G-BTagMu-UL2016_MiniAODv2_NanoAODv9': 30438, - 'ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2': 30439, - 'ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2': 30440, - 'ReReco-Run2016G-MET-UL2016_MiniAODv2': 30441, - 'ReReco-Run2016G-MuonEG-UL2016_MiniAODv2': 30442, - 'ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2': 30443, - 'ReReco-Run2016H-MET-UL2016_MiniAODv2': 30444, - 'ReReco-Run2016H-MuonEG-UL2016_MiniAODv2': 30445, - 'ReReco-Run2016G-MuonEG-UL2016_MiniAODv2_NanoAODv9': 30446, - 'ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_NanoAODv9': 30447, - 'ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_NanoAODv9': 30448, - 'ReReco-Run2016H-MET-UL2016_MiniAODv2_NanoAODv9': 30449, - 'ReReco-Run2016H-MuonEG-UL2016_MiniAODv2_NanoAODv9': 30450, - 'ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_NanoAODv9': 30451, - 'ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_NanoAODv9': 30452, - 'ReReco-Run2016H-Tau-UL2016_MiniAODv2_NanoAODv9': 30453, - 'ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_NanoAODv9': 30454, - 'ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2': 30455, - 'ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_NanoAODv9': 30456, - 'ReReco-Run2016H-ZeroBias-UL2016_MiniAODv2': 30457, - 'ReReco-Run2016G-ZeroBias-UL2016_MiniAODv2': 30458, - 'ReReco-Run2016G-ZeroBias-UL2016_MiniAODv2_JMENanoAODv9': 30459, - 'ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2': 30460, - 'ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_NanoAODv9': 30461, - 'ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_NanoAODv9': 30462, - 'ReReco-Run2016G-JetHT-UL2016_MiniAODv2_NanoAODv9': 30463, - 'ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_NanoAODv9': 30464, - 'ReReco-Run2016G-BTagCSV-UL2016_MiniAODv2_NanoAODv9': 30465, - 'ReReco-Run2016H-ZeroBias-UL2016_MiniAODv2_JMENanoAODv9': 30466, - 'ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2': 30467, - 'ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2': 30468, - 'ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2': 30469, - 'ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_NanoAODv9': 30470, - 'ReReco-Run2016G-MET-UL2016_MiniAODv2_NanoAODv9': 30471, - 'ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_NanoAODv9': 30472, - 'ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_NanoAODv9': 30473, - 'ReReco-Run2016G-Charmonium-UL2016_MiniAODv2': 30474, - 'ReReco-Run2016G-DisplacedJet-UL2016_MiniAODv2': 30475, - 'ReReco-Run2016H-DisplacedJet-UL2016_MiniAODv2': 30476, - 'ReReco-Run2016G-MuOnia-UL2016_MiniAODv2': 30477, + 'ReReco-Run2016H-DoubleMuonLowMass-21Feb2020_UL2016': 30410, + 'ReReco-Run2016G-DoubleMuonLowMass-21Feb2020_UL2016': 30411, + 'ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_BParking': 30412, + 'ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_BParking': 30413, + 'ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_BParking': 30414, + 'ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_BParking': 30415, + 'ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_BParking': 30416, + 'ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_BParking': 30417, + 'ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_BParking': 30418, + 'ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_BParking': 30419, + 'ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_BParking': 30420, + 'ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_BParking': 30421, + 'ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_BParking': 30422, + 'ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_BParking': 30423, + 'ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_BParking': 30424, + 'ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_BParking': 30425, + 'ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_BParking': 30426, + 'ReReco-Run2016H-BTagCSV-UL2016_MiniAODv2_NanoAODv9': 30427, + 'ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2_NanoAODv9': 30428, + 'ReReco-Run2016G-HTMHT-UL2016_MiniAODv2_NanoAODv9': 30429, + 'ReReco-Run2016H-DisplacedJet-UL2016_MiniAODv2_NanoAODv9': 30430, + 'ReReco-Run2016H-BTagMu-UL2016_MiniAODv2_NanoAODv9': 30431, + 'ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2_NanoAODv9': 30432, + 'ReReco-Run2016H-BTagCSV-UL2016_MiniAODv2': 30433, + 'ReReco-Run2016G-SinglePhoton-UL2016_MiniAODv2': 30434, + 'ReReco-Run2016G-Tau-UL2016_MiniAODv2_NanoAODv9': 30435, + 'ReReco-Run2016G-MuOnia-UL2016_MiniAODv2_NanoAODv9': 30436, + 'ReReco-Run2016G-Charmonium-UL2016_MiniAODv2_NanoAODv9': 30437, + 'ReReco-Run2016H-Charmonium-UL2016_MiniAODv2': 30438, + 'ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2': 30439, + 'ReReco-Run2016H-MuOnia-UL2016_MiniAODv2': 30440, + 'ReReco-Run2016H-JetHT-UL2016_MiniAODv2': 30441, + 'ReReco-Run2016G-JetHT-UL2016_MiniAODv2': 30442, + 'ReReco-Run2016G-BTagCSV-UL2016_MiniAODv2': 30443, + 'ReReco-Run2016H-DoubleMuonLowMass-UL2016_MiniAODv2': 30444, + 'ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2': 30445, + 'ReReco-Run2016G-Tau-UL2016_MiniAODv2': 30446, + 'ReReco-Run2016H-Tau-UL2016_MiniAODv2': 30447, + 'ReReco-Run2016G-BTagMu-UL2016_MiniAODv2': 30448, + 'ReReco-Run2016G-HTMHT-UL2016_MiniAODv2': 30449, + 'ReReco-Run2016H-BTagMu-UL2016_MiniAODv2': 30450, + 'ReReco-Run2016H-HTMHT-UL2016_MiniAODv2': 30451, + 'ReReco-Run2016G-MET-UL2016_MiniAODv2': 30452, + 'ReReco-Run2016H-MET-UL2016_MiniAODv2': 30453, + 'ReReco-Run2016G-MuonEG-UL2016_MiniAODv2': 30454, + 'ReReco-Run2016H-MuonEG-UL2016_MiniAODv2': 30455, + 'ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2': 30456, + 'ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2': 30457, + 'ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2': 30458, + 'ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2': 30459, + 'ReReco-Run2016H-HTMHT-UL2016_MiniAODv2_NanoAODv9': 30460, + 'ReReco-Run2016G-DisplacedJet-UL2016_MiniAODv2_NanoAODv9': 30461, + 'ReReco-Run2016H-JetHT-UL2016_MiniAODv2_NanoAODv9': 30462, + 'ReReco-Run2016G-BTagMu-UL2016_MiniAODv2_NanoAODv9': 30463, + 'ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2': 30464, + 'ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2': 30465, + 'ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2': 30466, + 'ReReco-Run2016G-MuonEG-UL2016_MiniAODv2_NanoAODv9': 30467, + 'ReReco-Run2016H-SinglePhoton-UL2016_MiniAODv2_NanoAODv9': 30468, + 'ReReco-Run2016G-SingleMuon-UL2016_MiniAODv2_NanoAODv9': 30469, + 'ReReco-Run2016H-MET-UL2016_MiniAODv2_NanoAODv9': 30470, + 'ReReco-Run2016H-MuonEG-UL2016_MiniAODv2_NanoAODv9': 30471, + 'ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_NanoAODv9': 30472, + 'ReReco-Run2016H-SingleMuon-UL2016_MiniAODv2_NanoAODv9': 30473, + 'ReReco-Run2016H-Tau-UL2016_MiniAODv2_NanoAODv9': 30474, + 'ReReco-Run2016H-DoubleEG-UL2016_MiniAODv2_NanoAODv9': 30475, + 'ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2_NanoAODv9': 30476, + 'ReReco-Run2016H-ZeroBias-UL2016_MiniAODv2': 30477, + 'ReReco-Run2016G-ZeroBias-UL2016_MiniAODv2': 30478, + 'ReReco-Run2016G-ZeroBias-UL2016_MiniAODv2_JMENanoAODv9': 30479, + 'ReReco-Run2016G-DoubleMuonLowMass-UL2016_MiniAODv2': 30480, + 'ReReco-Run2016H-Charmonium-UL2016_MiniAODv2_NanoAODv9': 30481, + 'ReReco-Run2016G-DoubleMuon-UL2016_MiniAODv2_NanoAODv9': 30482, + 'ReReco-Run2016G-JetHT-UL2016_MiniAODv2_NanoAODv9': 30483, + 'ReReco-Run2016G-SingleElectron-UL2016_MiniAODv2_NanoAODv9': 30484, + 'ReReco-Run2016G-BTagCSV-UL2016_MiniAODv2_NanoAODv9': 30485, + 'ReReco-Run2016H-ZeroBias-UL2016_MiniAODv2_JMENanoAODv9': 30486, + 'ReReco-Run2016G-DoubleEG-UL2016_MiniAODv2_NanoAODv9': 30487, + 'recoskim_Run2016G_DoubleEG': 30488, + 'recoskim_Run2016G_DoubleMuon': 30489, + 'recoskim_Run2016G_JetHT': 30490, + 'recoskim_Run2016G_MET': 30491, + 'recoskim_Run2016G_SingleElectron': 30492, + 'recoskim_Run2016G_SingleMuon': 30493, + 'recoskim_Run2016G_ZeroBias': 30494, + 'recoskim_Run2016H_DoubleEG': 30495, + 'recoskim_Run2016H_DoubleMuon': 30496, + 'recoskim_Run2016H_JetHT': 30497, + 'recoskim_Run2016H_MET': 30498, + 'recoskim_Run2016H_SingleElectron': 30499, + 'recoskim_Run2016H_SingleMuon': 30566, + 'recoskim_Run2016H_ZeroBias': 30567, + 'ReReco-Run2016G-MET-UL2016_MiniAODv2_NanoAODv9': 30568, + 'ReReco-Run2016H-MuOnia-UL2016_MiniAODv2_NanoAODv9': 30569, + 'ReReco-Run2016H-DoubleMuon-UL2016_MiniAODv2_NanoAODv9': 30570, + 'ReReco-Run2016G-Charmonium-UL2016_MiniAODv2': 30571, + 'ReReco-Run2016G-DisplacedJet-UL2016_MiniAODv2': 30572, + 'ReReco-Run2016H-DisplacedJet-UL2016_MiniAODv2': 30573, + 'ReReco-Run2016G-MuOnia-UL2016_MiniAODv2': 30574, + 'recoskim_Run2016G_BTagCSV': 30575, + 'recoskim_Run2016G_BTagMu': 30576, + 'recoskim_Run2016G_Charmonium': 30577, + 'recoskim_Run2016G_DisplacedJet': 30578, + 'recoskim_Run2016G_HTMHT': 30579, + 'recoskim_Run2016G_MuOnia': 30580, + 'recoskim_Run2016G_MuonEG': 30581, + 'recoskim_Run2016G_SinglePhoton': 30582, + 'recoskim_Run2016G_Tau': 30583, + 'recoskim_Run2016H_BTagCSV': 30584, + 'recoskim_Run2016H_BTagMu': 30585, + 'recoskim_Run2016H_Charmonium': 30586, + 'recoskim_Run2016H_DisplacedJet': 30587, + 'recoskim_Run2016H_HTMHT': 30588, + 'recoskim_Run2016H_MuOnia': 30589, + 'recoskim_Run2016H_MuonEG': 30590, + 'recoskim_Run2016H_SinglePhoton': 30591, + 'recoskim_Run2016H_Tau': 30592, + 'ReReco-Run2016H-SingleElectron-UL2016_MiniAODv2_BParking': 30593, } diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_BTagCSV.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_BTagCSV.py new file mode 100644 index 000000000..1d1bd13ce --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_BTagCSV.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_BTagCSV.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_BTagMu.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_BTagMu.py new file mode 100644 index 000000000..47eebebeb --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_BTagMu.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_BTagMu.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_Charmonium.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_Charmonium.py new file mode 100644 index 000000000..6822c8de5 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_Charmonium.py @@ -0,0 +1,837 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:MuonPOGJPsiSkim+BPHSkim+LogError+LogErrorMonitor,ALCA:TkAlJpsiMuMu,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_Charmonium.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamTkAlJpsiMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlJpsiMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlJpsiMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlJpsiMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlJpsiMuMu_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.SKIMStreamBPHSkim = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('BPHSkimPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('BPHSkim') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('BPHSkim.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_HLT', + 'keep *_hltGtStage2ObjectMap_*_HLT', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *_gmtStage2Digis_Muon_RECO', + 'keep *_gtDigis_*_RECO', + 'keep *_oniaSelectedTracks_*_*', + 'keep *_oniaPhotonCandidates_*_*', + 'keep *_onia2MuMuPAT_*_*', + 'keep *_oniaV0Tracks_*_*', + 'keep PileupSummaryInfos_*_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamMuonPOGJPsiSkim = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'MuonPOGJPsiSkimTrackPath', + 'MuonPOGJPsiSkimSTAPath' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('MuonPOGJPsiSkim') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuonPOGJPsiSkim.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_TriggerResults_*_*', + 'keep *_gmtStage2Digis_Muon_*', + 'keep *_offlineSlimmedPrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_slimmedMETs_*_*', + 'keep *Muons*_slimmedMuons_*_*', + 'keep *_isolatedTracks_*_*', + 'keep *_slimmedPatTrigger_*_*', + 'keep *_slimmedJets_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlJpsiMuMu_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamTkAlJpsiMuMuOutPath = cms.EndPath(process.ALCARECOStreamTkAlJpsiMuMu) +process.SKIMStreamBPHSkimOutPath = cms.EndPath(process.SKIMStreamBPHSkim) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamMuonPOGJPsiSkimOutPath = cms.EndPath(process.SKIMStreamMuonPOGJPsiSkim) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.BPHSkimPath,process.pathlogerror,process.MuonPOGJPsiSkimTrackPath,process.MuonPOGJPsiSkimSTAPath,process.pathlogerrormonitor,process.pathALCARECOTkAlJpsiMuMu,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamTkAlJpsiMuMuOutPath,process.SKIMStreamBPHSkimOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamMuonPOGJPsiSkimOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DisplacedJet.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DisplacedJet.py new file mode 100644 index 000000000..9afcd3fdb --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DisplacedJet.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_DisplacedJet.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DoubleEG.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DoubleEG.py new file mode 100644 index 000000000..9457292dd --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DoubleEG.py @@ -0,0 +1,1886 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:ZElectron+EXOMONOPOLE+LogError+LogErrorMonitor,ALCA:EcalCalZElectron+EcalUncalZElectron+HcalCalIterativePhiSym+HcalCalIsoTrkFilter,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_DoubleEG.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamEcalCalZElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'pathALCARECOEcalCalZElectron', + 'pathALCARECOEcalCalZSCElectron' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalCalZElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalCalZElectron.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_pfMet_*_*', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep recoVertexs_offlinePrimaryVerticesWithBS_*_*', + 'keep *BeamSpot_offlineBeamSpot_*_*', + 'keep *_allConversions_*_*', + 'keep *_conversions_*_*', + 'keep *GsfTrack*_electronGsfTracks_*_*', + 'keep *_generator_*_*', + 'keep *_addPileupInfo_*_*', + 'keep *_genParticles_*_*', + 'keep recoGsfElectron*_gsfElectron*_*_*', + 'keep recoGsfElectron*_gedGsfElectrons_*_*', + 'keep recoGsfElectron*_gedGsfElectronCores_*_*', + 'keep recoPhoton*_gedPhoton_*_*', + 'keep recoCaloClusters_hfEMClusters_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_alCaIsolatedElectrons_*_*', + 'keep recoCaloClusters_cleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoCaloClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersCleaned_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersUncleaned_*_*', + 'keep recoCaloClusters_multi5x5SuperClusters_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoPreshowerCluster*_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_multi5x5PreshowerClusterShape_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_alcaElectronTracksReducer_*_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep edmConditionsInEventBlock_conditionsInEdm_*_*', + 'keep edmConditionsInLumiBlock_conditionsInEdm_*_*', + 'keep edmConditionsInRunBlock_conditionsInEdm_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *EcalRecHit*_alCaIsolatedElectrons_*_*', + 'keep *EcalRecHit*_reducedEcalRecHitsES_alCaRecHitsES_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'drop reco*Clusters_hfEMClusters_*_*', + 'drop reco*Clusters_pfPhotonTranslator_*_*', + 'drop *EcalRecHit*_ecalRecHit_*_*', + 'drop *EcalrecHit*_*ecalPreshowerRecHit*_*EcalRecHitsES*_*', + 'drop *EcalRecHit*_reducedEcalRecHitsE*_*_*', + 'drop *_*Unclean*_*_*', + 'drop *_*unclean*_*_*', + 'drop *_*_*Unclean*_*', + 'drop *_*_*unclean*_*', + 'drop *CaloCluster*_*particleFlowEGamma*_*EBEEClusters*_*', + 'drop *CaloCluster*_*particleFlowEGamma*_*ESClusters*_*', + 'keep *CaloCluster*_alCaIsolatedElectrons_*alcaCaloCluster*_*' + ) +) +process.ALCARECOStreamEcalUncalZElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'pathALCARECOEcalUncalZElectron', + 'pathALCARECOEcalUncalZSCElectron' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalUncalZElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalUncalZElectron.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_pfMet_*_*', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep recoVertexs_offlinePrimaryVerticesWithBS_*_*', + 'keep *BeamSpot_offlineBeamSpot_*_*', + 'keep *_allConversions_*_*', + 'keep *_conversions_*_*', + 'keep *GsfTrack*_electronGsfTracks_*_*', + 'keep *_generator_*_*', + 'keep *_addPileupInfo_*_*', + 'keep *_genParticles_*_*', + 'keep recoGsfElectron*_gsfElectron*_*_*', + 'keep recoGsfElectron*_gedGsfElectrons_*_*', + 'keep recoGsfElectron*_gedGsfElectronCores_*_*', + 'keep recoPhoton*_gedPhoton_*_*', + 'keep recoCaloClusters_hfEMClusters_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_alCaIsolatedElectrons_*_*', + 'keep recoCaloClusters_cleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoCaloClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersCleaned_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersUncleaned_*_*', + 'keep recoCaloClusters_multi5x5SuperClusters_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoPreshowerCluster*_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_multi5x5PreshowerClusterShape_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_alcaElectronTracksReducer_*_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep edmConditionsInEventBlock_conditionsInEdm_*_*', + 'keep edmConditionsInLumiBlock_conditionsInEdm_*_*', + 'keep edmConditionsInRunBlock_conditionsInEdm_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *EcalRecHit*_alCaIsolatedElectrons_*_*', + 'keep *EcalRecHit*_reducedEcalRecHitsES_alCaRecHitsES_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_ecalDigis_*_*', + 'keep *EcalTriggerPrimitiveDigi*_ecalDigis_*_*', + 'keep *_ecalPreshowerDigis_*_*', + 'keep *_ecalDetIdToBeRecovered_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop recoCaloClusters_*_*_*', + 'drop recoSuperClusters_*_*_*', + 'drop recoPreshowerCluster*_*_*_*', + 'drop *EcalRecHit*_reducedEcalRecHitsES*_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_electronGsfTracks_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfElectronsrecoGsfElectronrecoGsfElectronsrecoGsfElectronedmrefhelperFindUsingAdvanceedmRefedmValueMap_gedGsfElectronsTmp_*_*', + 'drop recoConversions_conversions_uncleanedConversions_*', + 'drop recoGsfElectrons_gedGsfElectronsTmp_*_*', + 'drop recoGsfTracks_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfTrackExtras_uncleanedOnlyElectronGsfTracks_*_*' + ) +) +process.ALCARECOStreamHcalCalIsoTrkFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIsoTrkFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIsoTrkFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIsoTrkFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_gtStage2Digis_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_towerMaker_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_hltTriggerSummaryAOD_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_generalTracks_*_*', + 'keep *_generalTracksExtra_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_TkAlIsoProdFilter_*_*' + ) +) +process.ALCARECOStreamHcalCalIterativePhiSym = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIterativePhiSym') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIterativePhiSym') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIterativePhiSym.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_horeco_*_*', + 'keep *_hfreco_*_*', + 'keep *_hbhereco_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep edmTriggerResults_*_*_HLT' + ) +) +process.SKIMStreamEXOMONOPOLE = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('EXOMONOPOLEPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('EXOMONOPOLE') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EXOMONOPOLE.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', + 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoTracks_GsfGlobalElectronTest_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTracks_ctfPixelLess_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'drop doubles_*Jets_rhos_*', + 'drop doubles_*Jets_sigmas_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'drop recoHcalNoiseRBXs_*_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep recoPhotonCores_gedPhotonCore_*_*', + 'keep recoPhotons_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep *_hfRecoEcalCandidate_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'drop *_pfElectronTranslator_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep recoCaloClusters_pfElectronTranslator_*_*', + 'keep recoPreshowerClusters_pfElectronTranslator_*_*', + 'keep recoSuperClusters_pfElectronTranslator_*_*', + 'keep recoCaloClusters_pfPhotonTranslator_*_*', + 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', + 'keep recoSuperClusters_pfPhotonTranslator_*_*', + 'keep recoPhotons_pfPhotonTranslator_*_*', + 'keep recoPhotonCores_pfPhotonTranslator_*_*', + 'keep recoConversions_pfPhotonTranslator_*_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_multi5x5EndcapSuperClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapBasicClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapSuperClusters_*', + 'keep *_siStripClusters_*_*', + 'keep *_siPixelClusters_*_*', + 'drop *_generalTracks_*_*', + 'keep *_generalTracks_*_*', + 'drop *_generalTracks_QualityMasks_*', + 'keep *_ecalRecHit_EcalRecHitsEB_*', + 'keep *_ecalRecHit_EcalRecHitsEE_*', + 'keep *_hbhereco_*_*' + ) ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamZElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('ZElectronPathGsf') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('ZElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('ZElectron.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIterativePhiSym_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalCalZElectron_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIsoTrkFilter_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalUncalZElectron_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamEcalCalZElectronOutPath = cms.EndPath(process.ALCARECOStreamEcalCalZElectron) +process.ALCARECOStreamEcalUncalZElectronOutPath = cms.EndPath(process.ALCARECOStreamEcalUncalZElectron) +process.ALCARECOStreamHcalCalIsoTrkFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIsoTrkFilter) +process.ALCARECOStreamHcalCalIterativePhiSymOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIterativePhiSym) +process.SKIMStreamEXOMONOPOLEOutPath = cms.EndPath(process.SKIMStreamEXOMONOPOLE) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamZElectronOutPath = cms.EndPath(process.SKIMStreamZElectron) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.ZElectronPathGsf,process.EXOMONOPOLEPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOHcalCalIterativePhiSym,process.pathALCARECOEcalCalZElectron,process.pathALCARECOEcalCalZSCElectron,process.pathALCARECOHcalCalIsoTrkFilter,process.pathALCARECOEcalUncalZElectron,process.pathALCARECOEcalUncalZSCElectron,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamEcalCalZElectronOutPath,process.ALCARECOStreamEcalUncalZElectronOutPath,process.ALCARECOStreamHcalCalIsoTrkFilterOutPath,process.ALCARECOStreamHcalCalIterativePhiSymOutPath,process.SKIMStreamEXOMONOPOLEOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamZElectronOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DoubleMuon.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DoubleMuon.py new file mode 100644 index 000000000..3e6336d9f --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_DoubleMuon.py @@ -0,0 +1,956 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,ALCA:TkAlZMuMu+MuAlCalIsolatedMu+MuAlOverlaps+MuAlZMuMu+DtCalib+HcalCalLowPUHBHEMuonFilter,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_DoubleMuon.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamDtCalib = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECODtCalib') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('DtCalib') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('DtCalib.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DSegmentsNoWire_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_dttfDigis_*_*', + 'keep *_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep recoMuons_muons_*_*', + 'keep booledmValueMap_muidAllArbitrated_*_*', + 'keep booledmValueMap_muidGMStaChiCompatibility_*_*', + 'keep booledmValueMap_muidGMTkChiCompatibility_*_*', + 'keep booledmValueMap_muidGMTkKinkTight_*_*', + 'keep booledmValueMap_muidGlobalMuonPromptTight_*_*', + 'keep booledmValueMap_muidRPCMuLoose_*_*', + 'keep booledmValueMap_muidTM2DCompatibilityLoose_*_*', + 'keep booledmValueMap_muidTM2DCompatibilityTight_*_*', + 'keep booledmValueMap_muidTMLastStationAngLoose_*_*', + 'keep booledmValueMap_muidTMLastStationAngTight_*_*', + 'keep booledmValueMap_muidTMLastStationLoose_*_*', + 'keep booledmValueMap_muidTMLastStationOptimizedLowPtLoose_*_*', + 'keep booledmValueMap_muidTMLastStationOptimizedLowPtTight_*_*', + 'keep booledmValueMap_muidTMLastStationTight_*_*', + 'keep booledmValueMap_muidTMOneStationAngLoose_*_*', + 'keep booledmValueMap_muidTMOneStationAngTight_*_*', + 'keep booledmValueMap_muidTMOneStationLoose_*_*', + 'keep booledmValueMap_muidTMOneStationTight_*_*', + 'keep booledmValueMap_muidTrackerMuonArbitrated_*_*' + ) +) +process.ALCARECOStreamHcalCalLowPUHBHEMuonFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalLowPUHBHEMuonFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalLowPUHBHEMuonFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalLowPUHBHEMuonFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep *_muons_*_*' + ) +) +process.ALCARECOStreamMuAlCalIsolatedMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlCalIsolatedMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlCalIsolatedMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlCalIsolatedMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlCalIsolatedMu_*_*', + 'keep *_ALCARECOMuAlCalIsolatedMuGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamMuAlOverlaps = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlOverlaps') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlOverlaps') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlOverlaps.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlOverlaps_*_*', + 'keep *_ALCARECOMuAlOverlapsGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamMuAlZMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlZMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlZMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlZMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlZMuMu_*_*', + 'keep *_ALCARECOMuAlZMuMuGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamTkAlZMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlZMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlZMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlZMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlZMuMu_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlZMuMu_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlOverlaps_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlZMuMu_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECODtCalib_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalLowPUHBHEMuonFilter_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlCalIsolatedMu_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamDtCalibOutPath = cms.EndPath(process.ALCARECOStreamDtCalib) +process.ALCARECOStreamHcalCalLowPUHBHEMuonFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalLowPUHBHEMuonFilter) +process.ALCARECOStreamMuAlCalIsolatedMuOutPath = cms.EndPath(process.ALCARECOStreamMuAlCalIsolatedMu) +process.ALCARECOStreamMuAlOverlapsOutPath = cms.EndPath(process.ALCARECOStreamMuAlOverlaps) +process.ALCARECOStreamMuAlZMuMuOutPath = cms.EndPath(process.ALCARECOStreamMuAlZMuMu) +process.ALCARECOStreamTkAlZMuMuOutPath = cms.EndPath(process.ALCARECOStreamTkAlZMuMu) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOMuAlZMuMu,process.pathALCARECOMuAlZMuMuGeneralTracks,process.pathALCARECOMuAlOverlaps,process.pathALCARECOMuAlOverlapsGeneralTracks,process.pathALCARECOTkAlZMuMu,process.pathALCARECODtCalib,process.pathALCARECOHcalCalLowPUHBHEMuonFilter,process.pathALCARECOMuAlCalIsolatedMu,process.pathALCARECOMuAlCalIsolatedMuGeneralTracks,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamDtCalibOutPath,process.ALCARECOStreamHcalCalLowPUHBHEMuonFilterOutPath,process.ALCARECOStreamMuAlCalIsolatedMuOutPath,process.ALCARECOStreamMuAlOverlapsOutPath,process.ALCARECOStreamMuAlZMuMuOutPath,process.ALCARECOStreamTkAlZMuMuOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_HTMHT.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_HTMHT.py new file mode 100644 index 000000000..06f7e5239 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_HTMHT.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_HTMHT.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_JetHT.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_JetHT.py new file mode 100644 index 000000000..9361efe57 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_JetHT.py @@ -0,0 +1,1336 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:JetHTJetPlusHOFilter+LogError+LogErrorMonitor,ALCA:HcalCalIsoTrkFilter+HcalCalIsolatedBunchFilter+TkAlMinBias,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_JetHT.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamHcalCalIsoTrkFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIsoTrkFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIsoTrkFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIsoTrkFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_gtStage2Digis_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_towerMaker_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_hltTriggerSummaryAOD_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_generalTracks_*_*', + 'keep *_generalTracksExtra_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_TkAlIsoProdFilter_*_*' + ) +) +process.ALCARECOStreamHcalCalIsolatedBunchFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIsolatedBunchFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIsolatedBunchFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIsolatedBunchFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_hltTriggerSummaryAOD_*_*', + 'keep *_TriggerResults_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*' + ) +) +process.ALCARECOStreamTkAlMinBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlMinBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlMinBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlMinBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlMinBias_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*' + ) +) +process.SKIMStreamJetHTJetPlusHOFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('JetHTJetPlusHOFilterPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('JetHTJetPlusHOFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('JetHTJetPlusHOFilter.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlMinBias_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIsolatedBunchFilter_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIsoTrkFilter_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamHcalCalIsoTrkFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIsoTrkFilter) +process.ALCARECOStreamHcalCalIsolatedBunchFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIsolatedBunchFilter) +process.ALCARECOStreamTkAlMinBiasOutPath = cms.EndPath(process.ALCARECOStreamTkAlMinBias) +process.SKIMStreamJetHTJetPlusHOFilterOutPath = cms.EndPath(process.SKIMStreamJetHTJetPlusHOFilter) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.JetHTJetPlusHOFilterPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOTkAlMinBias,process.pathALCARECOHcalCalIsolatedBunchFilter,process.pathALCARECOHcalCalIsoTrkFilter,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamHcalCalIsoTrkFilterOutPath,process.ALCARECOStreamHcalCalIsolatedBunchFilterOutPath,process.ALCARECOStreamTkAlMinBiasOutPath,process.SKIMStreamJetHTJetPlusHOFilterOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MET.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MET.py new file mode 100644 index 000000000..b5a92e4c0 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MET.py @@ -0,0 +1,1673 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:HighMET+EXOMONOPOLE+LogError+LogErrorMonitor,ALCA:HcalCalNoise,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_MET.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamHcalCalNoise = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalNoise') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalNoise') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalNoise.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_HcalNoiseProd_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep edmTriggerResults_*_*_HLT' + ) +) +process.SKIMStreamEXOMONOPOLE = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('EXOMONOPOLEPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('EXOMONOPOLE') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EXOMONOPOLE.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', + 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoTracks_GsfGlobalElectronTest_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTracks_ctfPixelLess_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'drop doubles_*Jets_rhos_*', + 'drop doubles_*Jets_sigmas_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'drop recoHcalNoiseRBXs_*_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep recoPhotonCores_gedPhotonCore_*_*', + 'keep recoPhotons_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep *_hfRecoEcalCandidate_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'drop *_pfElectronTranslator_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep recoCaloClusters_pfElectronTranslator_*_*', + 'keep recoPreshowerClusters_pfElectronTranslator_*_*', + 'keep recoSuperClusters_pfElectronTranslator_*_*', + 'keep recoCaloClusters_pfPhotonTranslator_*_*', + 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', + 'keep recoSuperClusters_pfPhotonTranslator_*_*', + 'keep recoPhotons_pfPhotonTranslator_*_*', + 'keep recoPhotonCores_pfPhotonTranslator_*_*', + 'keep recoConversions_pfPhotonTranslator_*_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_multi5x5EndcapSuperClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapBasicClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapSuperClusters_*', + 'keep *_siStripClusters_*_*', + 'keep *_siPixelClusters_*_*', + 'drop *_generalTracks_*_*', + 'keep *_generalTracks_*_*', + 'drop *_generalTracks_QualityMasks_*', + 'keep *_ecalRecHit_EcalRecHitsEB_*', + 'keep *_ecalRecHit_EcalRecHitsEE_*', + 'keep *_hbhereco_*_*' + ) ) +) +process.SKIMStreamHighMET = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('condPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('HighMET') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HighMET.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalNoise_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamHcalCalNoiseOutPath = cms.EndPath(process.ALCARECOStreamHcalCalNoise) +process.SKIMStreamEXOMONOPOLEOutPath = cms.EndPath(process.SKIMStreamEXOMONOPOLE) +process.SKIMStreamHighMETOutPath = cms.EndPath(process.SKIMStreamHighMET) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.condPath,process.EXOMONOPOLEPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOHcalCalNoise,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamHcalCalNoiseOutPath,process.SKIMStreamEXOMONOPOLEOutPath,process.SKIMStreamHighMETOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MuOnia.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MuOnia.py new file mode 100644 index 000000000..afe03ccb3 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MuOnia.py @@ -0,0 +1,810 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:BPHSkim+LogError+LogErrorMonitor,ALCA:TkAlUpsilonMuMu,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_MuOnia.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamTkAlUpsilonMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlUpsilonMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlUpsilonMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlUpsilonMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlUpsilonMuMu_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.SKIMStreamBPHSkim = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('BPHSkimPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('BPHSkim') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('BPHSkim.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_HLT', + 'keep *_hltGtStage2ObjectMap_*_HLT', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *_gmtStage2Digis_Muon_RECO', + 'keep *_gtDigis_*_RECO', + 'keep *_oniaSelectedTracks_*_*', + 'keep *_oniaPhotonCandidates_*_*', + 'keep *_onia2MuMuPAT_*_*', + 'keep *_oniaV0Tracks_*_*', + 'keep PileupSummaryInfos_*_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlUpsilonMuMu_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamTkAlUpsilonMuMuOutPath = cms.EndPath(process.ALCARECOStreamTkAlUpsilonMuMu) +process.SKIMStreamBPHSkimOutPath = cms.EndPath(process.SKIMStreamBPHSkim) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.BPHSkimPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOTkAlUpsilonMuMu,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamTkAlUpsilonMuMuOutPath,process.SKIMStreamBPHSkimOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MuonEG.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MuonEG.py new file mode 100644 index 000000000..5e3222665 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_MuonEG.py @@ -0,0 +1,1261 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:TopMuEG+LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_MuonEG.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamTopMuEG = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('TopMuEGPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('TopMuEG') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TopMuEG.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamTopMuEGOutPath = cms.EndPath(process.SKIMStreamTopMuEG) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.TopMuEGPath,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamTopMuEGOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SingleElectron.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SingleElectron.py new file mode 100644 index 000000000..460e00323 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SingleElectron.py @@ -0,0 +1,990 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,ALCA:EcalUncalWElectron+EcalUncalZElectron+HcalCalIterativePhiSym+EcalESAlign,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_SingleElectron.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamEcalESAlign = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOEcalESAlign') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalESAlign') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalESAlign.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep ESDigiCollection_ecalPreshowerDigis_*_*', + 'keep SiPixelClusteredmNewDetSetVector_ecalAlCaESAlignTrackReducer_*_*', + 'keep SiStripClusteredmNewDetSetVector_ecalAlCaESAlignTrackReducer_*_*', + 'keep TrackingRecHitsOwned_ecalAlCaESAlignTrackReducer_*_*', + 'keep recoTrackExtras_ecalAlCaESAlignTrackReducer_*_*', + 'keep recoTracks_ecalAlCaESAlignTrackReducer_*_*', + 'keep recoBeamSpot_offlineBeamSpot_*_*' + ) +) +process.ALCARECOStreamEcalUncalWElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOEcalUncalWElectron') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalUncalWElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalUncalWElectron.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_pfMet_*_*', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep recoVertexs_offlinePrimaryVerticesWithBS_*_*', + 'keep *BeamSpot_offlineBeamSpot_*_*', + 'keep *_allConversions_*_*', + 'keep *_conversions_*_*', + 'keep *GsfTrack*_electronGsfTracks_*_*', + 'keep *_generator_*_*', + 'keep *_addPileupInfo_*_*', + 'keep *_genParticles_*_*', + 'keep recoGsfElectron*_gsfElectron*_*_*', + 'keep recoGsfElectron*_gedGsfElectrons_*_*', + 'keep recoGsfElectron*_gedGsfElectronCores_*_*', + 'keep recoPhoton*_gedPhoton_*_*', + 'keep recoCaloClusters_hfEMClusters_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_alCaIsolatedElectrons_*_*', + 'keep recoCaloClusters_cleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoCaloClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersCleaned_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersUncleaned_*_*', + 'keep recoCaloClusters_multi5x5SuperClusters_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoPreshowerCluster*_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_multi5x5PreshowerClusterShape_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_alcaElectronTracksReducer_*_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep edmConditionsInEventBlock_conditionsInEdm_*_*', + 'keep edmConditionsInLumiBlock_conditionsInEdm_*_*', + 'keep edmConditionsInRunBlock_conditionsInEdm_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *EcalRecHit*_alCaIsolatedElectrons_*_*', + 'keep *EcalRecHit*_reducedEcalRecHitsES_alCaRecHitsES_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_ecalDigis_*_*', + 'keep *EcalTriggerPrimitiveDigi*_ecalDigis_*_*', + 'keep *_ecalPreshowerDigis_*_*', + 'keep *_ecalDetIdToBeRecovered_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop recoCaloClusters_*_*_*', + 'drop recoSuperClusters_*_*_*', + 'drop recoPreshowerCluster*_*_*_*', + 'drop *EcalRecHit*_reducedEcalRecHitsES*_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_electronGsfTracks_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfElectronsrecoGsfElectronrecoGsfElectronsrecoGsfElectronedmrefhelperFindUsingAdvanceedmRefedmValueMap_gedGsfElectronsTmp_*_*', + 'drop recoConversions_conversions_uncleanedConversions_*', + 'drop recoGsfElectrons_gedGsfElectronsTmp_*_*', + 'drop recoGsfTracks_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfTrackExtras_uncleanedOnlyElectronGsfTracks_*_*' + ) +) +process.ALCARECOStreamEcalUncalZElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'pathALCARECOEcalUncalZElectron', + 'pathALCARECOEcalUncalZSCElectron' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalUncalZElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalUncalZElectron.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_pfMet_*_*', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep recoVertexs_offlinePrimaryVerticesWithBS_*_*', + 'keep *BeamSpot_offlineBeamSpot_*_*', + 'keep *_allConversions_*_*', + 'keep *_conversions_*_*', + 'keep *GsfTrack*_electronGsfTracks_*_*', + 'keep *_generator_*_*', + 'keep *_addPileupInfo_*_*', + 'keep *_genParticles_*_*', + 'keep recoGsfElectron*_gsfElectron*_*_*', + 'keep recoGsfElectron*_gedGsfElectrons_*_*', + 'keep recoGsfElectron*_gedGsfElectronCores_*_*', + 'keep recoPhoton*_gedPhoton_*_*', + 'keep recoCaloClusters_hfEMClusters_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_alCaIsolatedElectrons_*_*', + 'keep recoCaloClusters_cleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoCaloClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersCleaned_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersUncleaned_*_*', + 'keep recoCaloClusters_multi5x5SuperClusters_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoPreshowerCluster*_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_multi5x5PreshowerClusterShape_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_alcaElectronTracksReducer_*_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep edmConditionsInEventBlock_conditionsInEdm_*_*', + 'keep edmConditionsInLumiBlock_conditionsInEdm_*_*', + 'keep edmConditionsInRunBlock_conditionsInEdm_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *EcalRecHit*_alCaIsolatedElectrons_*_*', + 'keep *EcalRecHit*_reducedEcalRecHitsES_alCaRecHitsES_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_ecalDigis_*_*', + 'keep *EcalTriggerPrimitiveDigi*_ecalDigis_*_*', + 'keep *_ecalPreshowerDigis_*_*', + 'keep *_ecalDetIdToBeRecovered_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop recoCaloClusters_*_*_*', + 'drop recoSuperClusters_*_*_*', + 'drop recoPreshowerCluster*_*_*_*', + 'drop *EcalRecHit*_reducedEcalRecHitsES*_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_electronGsfTracks_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfElectronsrecoGsfElectronrecoGsfElectronsrecoGsfElectronedmrefhelperFindUsingAdvanceedmRefedmValueMap_gedGsfElectronsTmp_*_*', + 'drop recoConversions_conversions_uncleanedConversions_*', + 'drop recoGsfElectrons_gedGsfElectronsTmp_*_*', + 'drop recoGsfTracks_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfTrackExtras_uncleanedOnlyElectronGsfTracks_*_*' + ) +) +process.ALCARECOStreamHcalCalIterativePhiSym = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIterativePhiSym') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIterativePhiSym') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIterativePhiSym.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_horeco_*_*', + 'keep *_hfreco_*_*', + 'keep *_hbhereco_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep edmTriggerResults_*_*_HLT' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalESAlign_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalUncalWElectron_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIterativePhiSym_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalUncalZElectron_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamEcalESAlignOutPath = cms.EndPath(process.ALCARECOStreamEcalESAlign) +process.ALCARECOStreamEcalUncalWElectronOutPath = cms.EndPath(process.ALCARECOStreamEcalUncalWElectron) +process.ALCARECOStreamEcalUncalZElectronOutPath = cms.EndPath(process.ALCARECOStreamEcalUncalZElectron) +process.ALCARECOStreamHcalCalIterativePhiSymOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIterativePhiSym) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOEcalESAlign,process.pathALCARECOEcalUncalWElectron,process.pathALCARECOHcalCalIterativePhiSym,process.pathALCARECOEcalUncalZElectron,process.pathALCARECOEcalUncalZSCElectron,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamEcalESAlignOutPath,process.ALCARECOStreamEcalUncalWElectronOutPath,process.ALCARECOStreamEcalUncalZElectronOutPath,process.ALCARECOStreamHcalCalIterativePhiSymOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SingleMuon.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SingleMuon.py new file mode 100644 index 000000000..6735c1ee5 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SingleMuon.py @@ -0,0 +1,1683 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:MuonPOGSkim+ZMu+MuTau+LogError+LogErrorMonitor,ALCA:SiPixelCalSingleMuon+TkAlMuonIsolated+DtCalib+MuAlCalIsolatedMu+MuAlOverlaps+MuAlZMuMu+HcalCalHO+HcalCalIterativePhiSym+HcalCalHBHEMuonFilter+HcalCalHEMuonFilter,EI,PAT,DQM:@rerecoSingleMuon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_SingleMuon.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamDtCalib = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECODtCalib') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('DtCalib') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('DtCalib.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DSegmentsNoWire_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_dttfDigis_*_*', + 'keep *_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep recoMuons_muons_*_*', + 'keep booledmValueMap_muidAllArbitrated_*_*', + 'keep booledmValueMap_muidGMStaChiCompatibility_*_*', + 'keep booledmValueMap_muidGMTkChiCompatibility_*_*', + 'keep booledmValueMap_muidGMTkKinkTight_*_*', + 'keep booledmValueMap_muidGlobalMuonPromptTight_*_*', + 'keep booledmValueMap_muidRPCMuLoose_*_*', + 'keep booledmValueMap_muidTM2DCompatibilityLoose_*_*', + 'keep booledmValueMap_muidTM2DCompatibilityTight_*_*', + 'keep booledmValueMap_muidTMLastStationAngLoose_*_*', + 'keep booledmValueMap_muidTMLastStationAngTight_*_*', + 'keep booledmValueMap_muidTMLastStationLoose_*_*', + 'keep booledmValueMap_muidTMLastStationOptimizedLowPtLoose_*_*', + 'keep booledmValueMap_muidTMLastStationOptimizedLowPtTight_*_*', + 'keep booledmValueMap_muidTMLastStationTight_*_*', + 'keep booledmValueMap_muidTMOneStationAngLoose_*_*', + 'keep booledmValueMap_muidTMOneStationAngTight_*_*', + 'keep booledmValueMap_muidTMOneStationLoose_*_*', + 'keep booledmValueMap_muidTMOneStationTight_*_*', + 'keep booledmValueMap_muidTrackerMuonArbitrated_*_*' + ) +) +process.ALCARECOStreamHcalCalHBHEMuonFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalHBHEMuonFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalHBHEMuonFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalHBHEMuonFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep *_muons_*_*' + ) +) +process.ALCARECOStreamHcalCalHEMuonFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalHEMuonFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalHEMuonFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalHEMuonFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep *_muons_*_*' + ) +) +process.ALCARECOStreamHcalCalHO = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalHO') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalHO') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalHO.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_hoCalibProducer_*_*' + ) +) +process.ALCARECOStreamHcalCalIterativePhiSym = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIterativePhiSym') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIterativePhiSym') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIterativePhiSym.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_horeco_*_*', + 'keep *_hfreco_*_*', + 'keep *_hbhereco_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep edmTriggerResults_*_*_HLT' + ) +) +process.ALCARECOStreamMuAlCalIsolatedMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlCalIsolatedMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlCalIsolatedMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlCalIsolatedMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlCalIsolatedMu_*_*', + 'keep *_ALCARECOMuAlCalIsolatedMuGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamMuAlOverlaps = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlOverlaps') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlOverlaps') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlOverlaps.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlOverlaps_*_*', + 'keep *_ALCARECOMuAlOverlapsGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamMuAlZMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlZMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlZMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlZMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlZMuMu_*_*', + 'keep *_ALCARECOMuAlZMuMuGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamSiPixelCalSingleMuon = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOSiPixelCalSingleMuon') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('SiPixelCalSingleMuon') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('SiPixelCalSingleMuon.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOSiPixelCalSingleMuon_*_*', + 'keep *_muons__*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_*riggerResults_*_HLT' + ) +) +process.ALCARECOStreamTkAlMuonIsolated = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlMuonIsolated') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlMuonIsolated') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlMuonIsolated.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlMuonIsolated_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamMuTau = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('MuTauPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('MuTau') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuTau.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'drop *', + 'keep *_slimmedPhotons_*_*', + 'keep *_slimmedOOTPhotons_*_*', + 'keep *_slimmedElectrons_*_*', + 'keep *_slimmedMuons_*_*', + 'keep *_slimmedTaus_*_*', + 'keep *_slimmedTausBoosted_*_*', + 'keep *_slimmedCaloJets_*_*', + 'keep *_slimmedJets_*_*', + 'drop recoBaseTagInfosOwned_slimmedJets_*_*', + 'keep *_slimmedJetsAK8_*_*', + 'drop recoBaseTagInfosOwned_slimmedJetsAK8_*_*', + 'keep *_slimmedJetsPuppi_*_*', + 'keep *_slimmedMETs_*_*', + 'keep *_slimmedMETsNoHF_*_*', + 'keep *_slimmedMETsPuppi_*_*', + 'keep *_slimmedSecondaryVertices_*_*', + 'keep *_slimmedLambdaVertices_*_*', + 'keep *_slimmedKshortVertices_*_*', + 'keep *_slimmedJetsAK8PFPuppiSoftDropPacked_SubJets_*', + 'keep recoPhotonCores_reducedEgamma_*_*', + 'keep recoGsfElectronCores_reducedEgamma_*_*', + 'keep recoConversions_reducedEgamma_*_*', + 'keep recoSuperClusters_reducedEgamma_*_*', + 'keep recoCaloClusters_reducedEgamma_*_*', + 'keep EcalRecHitsSorted_reducedEgamma_*_*', + 'keep recoGsfTracks_reducedEgamma_*_*', + 'keep HBHERecHitsSorted_reducedEgamma_*_*', + 'drop *_*_caloTowers_*', + 'drop *_*_pfCandidates_*', + 'drop *_*_genJets_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlineSlimmedPrimaryVertices_*_*', + 'keep patPackedCandidates_packedPFCandidates_*_*', + 'keep *_isolatedTracks_*_*', + 'keep *_oniaPhotonCandidates_*_*', + 'keep *_bunchSpacingProducer_*_*', + 'keep double_fixedGridRhoAll__*', + 'keep double_fixedGridRhoFastjetAll__*', + 'keep double_fixedGridRhoFastjetAllTmp__*', + 'keep double_fixedGridRhoFastjetAllCalo__*', + 'keep double_fixedGridRhoFastjetCentral_*_*', + 'keep double_fixedGridRhoFastjetCentralCalo__*', + 'keep double_fixedGridRhoFastjetCentralChargedPileUp__*', + 'keep double_fixedGridRhoFastjetCentralNeutral__*', + 'keep *_slimmedPatTrigger_*_*', + 'keep patPackedTriggerPrescales_patTrigger__*', + 'keep patPackedTriggerPrescales_patTrigger_l1max_*', + 'keep patPackedTriggerPrescales_patTrigger_l1min_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_gtStage2Digis__*', + 'keep *_gmtStage2Digis_Muon_*', + 'keep *_caloStage2Digis_Jet_*', + 'keep *_caloStage2Digis_Tau_*', + 'keep *_caloStage2Digis_EGamma_*', + 'keep *_caloStage2Digis_EtSum_*', + 'keep *_TriggerResults_*_HLT', + 'keep *_TriggerResults_*_*', + 'keep patPackedCandidates_lostTracks_*_*', + 'keep HcalNoiseSummary_hcalnoise__*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep *_prefiringweight_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) +) +process.SKIMStreamMuonPOGSkim = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'MuonPOGSkimTrackPath', + 'MuonPOGSkimSTAPath' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('MuonPOGSkim') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuonPOGSkim.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_TriggerResults_*_*', + 'keep *_gmtStage2Digis_Muon_*', + 'keep *_offlineSlimmedPrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_slimmedMETs_*_*', + 'keep *Muons*_slimmedMuons_*_*', + 'keep *_isolatedTracks_*_*', + 'keep *_slimmedPatTrigger_*_*', + 'keep *_slimmedJets_*_*' + ) +) +process.SKIMStreamZMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('ZMuSkimPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('ZMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('ZMu.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalHBHEMuonFilter_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlZMuMu_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlOverlaps_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOSiPixelCalSingleMuon_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlMuonIsolated_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIterativePhiSym_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECODtCalib_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlCalIsolatedMu_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalHO_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalHEMuonFilter_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineLumi) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_10_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamDtCalibOutPath = cms.EndPath(process.ALCARECOStreamDtCalib) +process.ALCARECOStreamHcalCalHBHEMuonFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalHBHEMuonFilter) +process.ALCARECOStreamHcalCalHEMuonFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalHEMuonFilter) +process.ALCARECOStreamHcalCalHOOutPath = cms.EndPath(process.ALCARECOStreamHcalCalHO) +process.ALCARECOStreamHcalCalIterativePhiSymOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIterativePhiSym) +process.ALCARECOStreamMuAlCalIsolatedMuOutPath = cms.EndPath(process.ALCARECOStreamMuAlCalIsolatedMu) +process.ALCARECOStreamMuAlOverlapsOutPath = cms.EndPath(process.ALCARECOStreamMuAlOverlaps) +process.ALCARECOStreamMuAlZMuMuOutPath = cms.EndPath(process.ALCARECOStreamMuAlZMuMu) +process.ALCARECOStreamSiPixelCalSingleMuonOutPath = cms.EndPath(process.ALCARECOStreamSiPixelCalSingleMuon) +process.ALCARECOStreamTkAlMuonIsolatedOutPath = cms.EndPath(process.ALCARECOStreamTkAlMuonIsolated) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamMuTauOutPath = cms.EndPath(process.SKIMStreamMuTau) +process.SKIMStreamMuonPOGSkimOutPath = cms.EndPath(process.SKIMStreamMuonPOGSkim) +process.SKIMStreamZMuOutPath = cms.EndPath(process.SKIMStreamZMu) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.MuonPOGSkimTrackPath,process.MuonPOGSkimSTAPath,process.MuTauPath,process.ZMuSkimPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOHcalCalHBHEMuonFilter,process.pathALCARECOMuAlZMuMu,process.pathALCARECOMuAlZMuMuGeneralTracks,process.pathALCARECOMuAlOverlaps,process.pathALCARECOMuAlOverlapsGeneralTracks,process.pathALCARECOSiPixelCalSingleMuon,process.pathALCARECOTkAlMuonIsolated,process.pathALCARECOHcalCalIterativePhiSym,process.pathALCARECODtCalib,process.pathALCARECOMuAlCalIsolatedMu,process.pathALCARECOMuAlCalIsolatedMuGeneralTracks,process.pathALCARECOHcalCalHO,process.pathALCARECOHcalCalHEMuonFilter,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmoffline_10_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamDtCalibOutPath,process.ALCARECOStreamHcalCalHBHEMuonFilterOutPath,process.ALCARECOStreamHcalCalHEMuonFilterOutPath,process.ALCARECOStreamHcalCalHOOutPath,process.ALCARECOStreamHcalCalIterativePhiSymOutPath,process.ALCARECOStreamMuAlCalIsolatedMuOutPath,process.ALCARECOStreamMuAlOverlapsOutPath,process.ALCARECOStreamMuAlZMuMuOutPath,process.ALCARECOStreamSiPixelCalSingleMuonOutPath,process.ALCARECOStreamTkAlMuonIsolatedOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamMuTauOutPath,process.SKIMStreamMuonPOGSkimOutPath,process.SKIMStreamZMuOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SinglePhoton.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SinglePhoton.py new file mode 100644 index 000000000..0e422d475 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_SinglePhoton.py @@ -0,0 +1,1703 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:SinglePhotonJetPlusHOFilter+EXOMONOPOLE+LogError+LogErrorMonitor,ALCA:HcalCalGammaJet,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_SinglePhoton.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamHcalCalGammaJet = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalGammaJet') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalGammaJet') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalGammaJet.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoPhotonCores_gedPhotonCore_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoPhotonCores_reducedEgamma_reducedGedPhotonCores_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters__*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_reducedEgamma_reducedSuperClusters_*', + 'keep recoTracks_generalTracks_*_*', + 'keep *_particleFlow_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterECALUncorrected_*_*', + 'keep recoPFClusters_particleFlowClusterHBHE_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep *_GammaJetProd_*_*' + ) +) +process.SKIMStreamEXOMONOPOLE = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('EXOMONOPOLEPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('EXOMONOPOLE') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EXOMONOPOLE.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', + 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoTracks_GsfGlobalElectronTest_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTracks_ctfPixelLess_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'drop doubles_*Jets_rhos_*', + 'drop doubles_*Jets_sigmas_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'drop recoHcalNoiseRBXs_*_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep recoPhotonCores_gedPhotonCore_*_*', + 'keep recoPhotons_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep *_hfRecoEcalCandidate_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'drop *_pfElectronTranslator_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep recoCaloClusters_pfElectronTranslator_*_*', + 'keep recoPreshowerClusters_pfElectronTranslator_*_*', + 'keep recoSuperClusters_pfElectronTranslator_*_*', + 'keep recoCaloClusters_pfPhotonTranslator_*_*', + 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', + 'keep recoSuperClusters_pfPhotonTranslator_*_*', + 'keep recoPhotons_pfPhotonTranslator_*_*', + 'keep recoPhotonCores_pfPhotonTranslator_*_*', + 'keep recoConversions_pfPhotonTranslator_*_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_multi5x5EndcapSuperClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapBasicClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapSuperClusters_*', + 'keep *_siStripClusters_*_*', + 'keep *_siPixelClusters_*_*', + 'drop *_generalTracks_*_*', + 'keep *_generalTracks_*_*', + 'drop *_generalTracks_QualityMasks_*', + 'keep *_ecalRecHit_EcalRecHitsEB_*', + 'keep *_ecalRecHit_EcalRecHitsEE_*', + 'keep *_hbhereco_*_*' + ) ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamSinglePhotonJetPlusHOFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('SinglePhotonJetPlusHOFilterPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('SinglePhotonJetPlusHOFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('SinglePhotonJetPlusHOFilter.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalGammaJet_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamHcalCalGammaJetOutPath = cms.EndPath(process.ALCARECOStreamHcalCalGammaJet) +process.SKIMStreamEXOMONOPOLEOutPath = cms.EndPath(process.SKIMStreamEXOMONOPOLE) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamSinglePhotonJetPlusHOFilterOutPath = cms.EndPath(process.SKIMStreamSinglePhotonJetPlusHOFilter) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.SinglePhotonJetPlusHOFilterPath,process.EXOMONOPOLEPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOHcalCalGammaJet,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamHcalCalGammaJetOutPath,process.SKIMStreamEXOMONOPOLEOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamSinglePhotonJetPlusHOFilterOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_Tau.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_Tau.py new file mode 100644 index 000000000..c8dc39319 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_Tau.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_Tau.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016G_ZeroBias.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_ZeroBias.py new file mode 100644 index 000000000..431dc4740 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016G_ZeroBias.py @@ -0,0 +1,867 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,ALCA:SiStripCalZeroBias+TkAlMinBias+LumiPixelsMinBias+SiStripCalMinBias+AlCaPCCZeroBiasFromRECO,EI,PAT,DQM:@rerecoZeroBias --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016G_ZeroBias.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamAlCaPCCZeroBiasFromRECO = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOAlCaPCCZeroBiasFromRECO') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('AlCaPCCZeroBiasFromRECO') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('AlCaPCCZeroBiasFromRECO.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_*alcaPCCProducerZeroBias*_*_*' + ) +) +process.ALCARECOStreamLumiPixelsMinBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOLumiPixelsMinBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('LumiPixelsMinBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LumiPixelsMinBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_siPixelClusters_*_*', + 'keep *_TriggerResults_*_HLT', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_HLT', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.ALCARECOStreamSiStripCalMinBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOSiStripCalMinBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('SiStripCalMinBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('SiStripCalMinBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOSiStripCalMinBias_*_*', + 'keep *_siStripClusters_*_*', + 'keep *_siPixelClusters_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_TriggerResults_*_*' + ) +) +process.ALCARECOStreamSiStripCalZeroBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOSiStripCalZeroBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('SiStripCalZeroBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('SiStripCalZeroBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOSiStripCalZeroBias_*_*', + 'keep *_calZeroBiasClusters_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep *_TriggerResults_*_*' + ) +) +process.ALCARECOStreamTkAlMinBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlMinBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlMinBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlMinBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlMinBias_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlMinBias_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOSiStripCalZeroBias_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOAlCaPCCZeroBiasFromRECO_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOLumiPixelsMinBias_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOSiStripCalMinBias_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommonSiStripZeroBias) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamAlCaPCCZeroBiasFromRECOOutPath = cms.EndPath(process.ALCARECOStreamAlCaPCCZeroBiasFromRECO) +process.ALCARECOStreamLumiPixelsMinBiasOutPath = cms.EndPath(process.ALCARECOStreamLumiPixelsMinBias) +process.ALCARECOStreamSiStripCalMinBiasOutPath = cms.EndPath(process.ALCARECOStreamSiStripCalMinBias) +process.ALCARECOStreamSiStripCalZeroBiasOutPath = cms.EndPath(process.ALCARECOStreamSiStripCalZeroBias) +process.ALCARECOStreamTkAlMinBiasOutPath = cms.EndPath(process.ALCARECOStreamTkAlMinBias) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOTkAlMinBias,process.pathALCARECOSiStripCalZeroBias,process.pathALCARECOAlCaPCCZeroBiasFromRECO,process.pathALCARECOLumiPixelsMinBias,process.pathALCARECOSiStripCalMinBias,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamAlCaPCCZeroBiasFromRECOOutPath,process.ALCARECOStreamLumiPixelsMinBiasOutPath,process.ALCARECOStreamSiStripCalMinBiasOutPath,process.ALCARECOStreamSiStripCalZeroBiasOutPath,process.ALCARECOStreamTkAlMinBiasOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_BTagCSV.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_BTagCSV.py new file mode 100644 index 000000000..a7a45dd9c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_BTagCSV.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_BTagCSV.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_BTagMu.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_BTagMu.py new file mode 100644 index 000000000..85d9e1802 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_BTagMu.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_BTagMu.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_Charmonium.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_Charmonium.py new file mode 100644 index 000000000..46036e08e --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_Charmonium.py @@ -0,0 +1,837 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:MuonPOGJPsiSkim+BPHSkim+LogError+LogErrorMonitor,ALCA:TkAlJpsiMuMu,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_Charmonium.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamTkAlJpsiMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlJpsiMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlJpsiMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlJpsiMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlJpsiMuMu_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.SKIMStreamBPHSkim = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('BPHSkimPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('BPHSkim') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('BPHSkim.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_HLT', + 'keep *_hltGtStage2ObjectMap_*_HLT', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *_gmtStage2Digis_Muon_RECO', + 'keep *_gtDigis_*_RECO', + 'keep *_oniaSelectedTracks_*_*', + 'keep *_oniaPhotonCandidates_*_*', + 'keep *_onia2MuMuPAT_*_*', + 'keep *_oniaV0Tracks_*_*', + 'keep PileupSummaryInfos_*_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamMuonPOGJPsiSkim = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'MuonPOGJPsiSkimTrackPath', + 'MuonPOGJPsiSkimSTAPath' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('MuonPOGJPsiSkim') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuonPOGJPsiSkim.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_TriggerResults_*_*', + 'keep *_gmtStage2Digis_Muon_*', + 'keep *_offlineSlimmedPrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_slimmedMETs_*_*', + 'keep *Muons*_slimmedMuons_*_*', + 'keep *_isolatedTracks_*_*', + 'keep *_slimmedPatTrigger_*_*', + 'keep *_slimmedJets_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlJpsiMuMu_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamTkAlJpsiMuMuOutPath = cms.EndPath(process.ALCARECOStreamTkAlJpsiMuMu) +process.SKIMStreamBPHSkimOutPath = cms.EndPath(process.SKIMStreamBPHSkim) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamMuonPOGJPsiSkimOutPath = cms.EndPath(process.SKIMStreamMuonPOGJPsiSkim) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.BPHSkimPath,process.pathlogerror,process.MuonPOGJPsiSkimTrackPath,process.MuonPOGJPsiSkimSTAPath,process.pathlogerrormonitor,process.pathALCARECOTkAlJpsiMuMu,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamTkAlJpsiMuMuOutPath,process.SKIMStreamBPHSkimOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamMuonPOGJPsiSkimOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DisplacedJet.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DisplacedJet.py new file mode 100644 index 000000000..d97060320 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DisplacedJet.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_DisplacedJet.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DoubleEG.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DoubleEG.py new file mode 100644 index 000000000..34fe19aa0 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DoubleEG.py @@ -0,0 +1,1886 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:ZElectron+EXOMONOPOLE+LogError+LogErrorMonitor,ALCA:EcalCalZElectron+EcalUncalZElectron+HcalCalIterativePhiSym+HcalCalIsoTrkFilter,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_DoubleEG.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamEcalCalZElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'pathALCARECOEcalCalZElectron', + 'pathALCARECOEcalCalZSCElectron' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalCalZElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalCalZElectron.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_pfMet_*_*', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep recoVertexs_offlinePrimaryVerticesWithBS_*_*', + 'keep *BeamSpot_offlineBeamSpot_*_*', + 'keep *_allConversions_*_*', + 'keep *_conversions_*_*', + 'keep *GsfTrack*_electronGsfTracks_*_*', + 'keep *_generator_*_*', + 'keep *_addPileupInfo_*_*', + 'keep *_genParticles_*_*', + 'keep recoGsfElectron*_gsfElectron*_*_*', + 'keep recoGsfElectron*_gedGsfElectrons_*_*', + 'keep recoGsfElectron*_gedGsfElectronCores_*_*', + 'keep recoPhoton*_gedPhoton_*_*', + 'keep recoCaloClusters_hfEMClusters_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_alCaIsolatedElectrons_*_*', + 'keep recoCaloClusters_cleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoCaloClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersCleaned_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersUncleaned_*_*', + 'keep recoCaloClusters_multi5x5SuperClusters_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoPreshowerCluster*_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_multi5x5PreshowerClusterShape_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_alcaElectronTracksReducer_*_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep edmConditionsInEventBlock_conditionsInEdm_*_*', + 'keep edmConditionsInLumiBlock_conditionsInEdm_*_*', + 'keep edmConditionsInRunBlock_conditionsInEdm_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *EcalRecHit*_alCaIsolatedElectrons_*_*', + 'keep *EcalRecHit*_reducedEcalRecHitsES_alCaRecHitsES_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'drop reco*Clusters_hfEMClusters_*_*', + 'drop reco*Clusters_pfPhotonTranslator_*_*', + 'drop *EcalRecHit*_ecalRecHit_*_*', + 'drop *EcalrecHit*_*ecalPreshowerRecHit*_*EcalRecHitsES*_*', + 'drop *EcalRecHit*_reducedEcalRecHitsE*_*_*', + 'drop *_*Unclean*_*_*', + 'drop *_*unclean*_*_*', + 'drop *_*_*Unclean*_*', + 'drop *_*_*unclean*_*', + 'drop *CaloCluster*_*particleFlowEGamma*_*EBEEClusters*_*', + 'drop *CaloCluster*_*particleFlowEGamma*_*ESClusters*_*', + 'keep *CaloCluster*_alCaIsolatedElectrons_*alcaCaloCluster*_*' + ) +) +process.ALCARECOStreamEcalUncalZElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'pathALCARECOEcalUncalZElectron', + 'pathALCARECOEcalUncalZSCElectron' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalUncalZElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalUncalZElectron.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_pfMet_*_*', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep recoVertexs_offlinePrimaryVerticesWithBS_*_*', + 'keep *BeamSpot_offlineBeamSpot_*_*', + 'keep *_allConversions_*_*', + 'keep *_conversions_*_*', + 'keep *GsfTrack*_electronGsfTracks_*_*', + 'keep *_generator_*_*', + 'keep *_addPileupInfo_*_*', + 'keep *_genParticles_*_*', + 'keep recoGsfElectron*_gsfElectron*_*_*', + 'keep recoGsfElectron*_gedGsfElectrons_*_*', + 'keep recoGsfElectron*_gedGsfElectronCores_*_*', + 'keep recoPhoton*_gedPhoton_*_*', + 'keep recoCaloClusters_hfEMClusters_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_alCaIsolatedElectrons_*_*', + 'keep recoCaloClusters_cleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoCaloClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersCleaned_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersUncleaned_*_*', + 'keep recoCaloClusters_multi5x5SuperClusters_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoPreshowerCluster*_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_multi5x5PreshowerClusterShape_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_alcaElectronTracksReducer_*_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep edmConditionsInEventBlock_conditionsInEdm_*_*', + 'keep edmConditionsInLumiBlock_conditionsInEdm_*_*', + 'keep edmConditionsInRunBlock_conditionsInEdm_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *EcalRecHit*_alCaIsolatedElectrons_*_*', + 'keep *EcalRecHit*_reducedEcalRecHitsES_alCaRecHitsES_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_ecalDigis_*_*', + 'keep *EcalTriggerPrimitiveDigi*_ecalDigis_*_*', + 'keep *_ecalPreshowerDigis_*_*', + 'keep *_ecalDetIdToBeRecovered_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop recoCaloClusters_*_*_*', + 'drop recoSuperClusters_*_*_*', + 'drop recoPreshowerCluster*_*_*_*', + 'drop *EcalRecHit*_reducedEcalRecHitsES*_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_electronGsfTracks_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfElectronsrecoGsfElectronrecoGsfElectronsrecoGsfElectronedmrefhelperFindUsingAdvanceedmRefedmValueMap_gedGsfElectronsTmp_*_*', + 'drop recoConversions_conversions_uncleanedConversions_*', + 'drop recoGsfElectrons_gedGsfElectronsTmp_*_*', + 'drop recoGsfTracks_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfTrackExtras_uncleanedOnlyElectronGsfTracks_*_*' + ) +) +process.ALCARECOStreamHcalCalIsoTrkFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIsoTrkFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIsoTrkFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIsoTrkFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_gtStage2Digis_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_towerMaker_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_hltTriggerSummaryAOD_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_generalTracks_*_*', + 'keep *_generalTracksExtra_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_TkAlIsoProdFilter_*_*' + ) +) +process.ALCARECOStreamHcalCalIterativePhiSym = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIterativePhiSym') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIterativePhiSym') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIterativePhiSym.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_horeco_*_*', + 'keep *_hfreco_*_*', + 'keep *_hbhereco_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep edmTriggerResults_*_*_HLT' + ) +) +process.SKIMStreamEXOMONOPOLE = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('EXOMONOPOLEPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('EXOMONOPOLE') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EXOMONOPOLE.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', + 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoTracks_GsfGlobalElectronTest_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTracks_ctfPixelLess_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'drop doubles_*Jets_rhos_*', + 'drop doubles_*Jets_sigmas_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'drop recoHcalNoiseRBXs_*_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep recoPhotonCores_gedPhotonCore_*_*', + 'keep recoPhotons_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep *_hfRecoEcalCandidate_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'drop *_pfElectronTranslator_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep recoCaloClusters_pfElectronTranslator_*_*', + 'keep recoPreshowerClusters_pfElectronTranslator_*_*', + 'keep recoSuperClusters_pfElectronTranslator_*_*', + 'keep recoCaloClusters_pfPhotonTranslator_*_*', + 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', + 'keep recoSuperClusters_pfPhotonTranslator_*_*', + 'keep recoPhotons_pfPhotonTranslator_*_*', + 'keep recoPhotonCores_pfPhotonTranslator_*_*', + 'keep recoConversions_pfPhotonTranslator_*_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_multi5x5EndcapSuperClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapBasicClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapSuperClusters_*', + 'keep *_siStripClusters_*_*', + 'keep *_siPixelClusters_*_*', + 'drop *_generalTracks_*_*', + 'keep *_generalTracks_*_*', + 'drop *_generalTracks_QualityMasks_*', + 'keep *_ecalRecHit_EcalRecHitsEB_*', + 'keep *_ecalRecHit_EcalRecHitsEE_*', + 'keep *_hbhereco_*_*' + ) ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamZElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('ZElectronPathGsf') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('ZElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('ZElectron.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIterativePhiSym_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalCalZElectron_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIsoTrkFilter_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalUncalZElectron_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamEcalCalZElectronOutPath = cms.EndPath(process.ALCARECOStreamEcalCalZElectron) +process.ALCARECOStreamEcalUncalZElectronOutPath = cms.EndPath(process.ALCARECOStreamEcalUncalZElectron) +process.ALCARECOStreamHcalCalIsoTrkFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIsoTrkFilter) +process.ALCARECOStreamHcalCalIterativePhiSymOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIterativePhiSym) +process.SKIMStreamEXOMONOPOLEOutPath = cms.EndPath(process.SKIMStreamEXOMONOPOLE) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamZElectronOutPath = cms.EndPath(process.SKIMStreamZElectron) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.ZElectronPathGsf,process.EXOMONOPOLEPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOHcalCalIterativePhiSym,process.pathALCARECOEcalCalZElectron,process.pathALCARECOEcalCalZSCElectron,process.pathALCARECOHcalCalIsoTrkFilter,process.pathALCARECOEcalUncalZElectron,process.pathALCARECOEcalUncalZSCElectron,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamEcalCalZElectronOutPath,process.ALCARECOStreamEcalUncalZElectronOutPath,process.ALCARECOStreamHcalCalIsoTrkFilterOutPath,process.ALCARECOStreamHcalCalIterativePhiSymOutPath,process.SKIMStreamEXOMONOPOLEOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamZElectronOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DoubleMuon.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DoubleMuon.py new file mode 100644 index 000000000..ecbd7b674 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_DoubleMuon.py @@ -0,0 +1,956 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,ALCA:TkAlZMuMu+MuAlCalIsolatedMu+MuAlOverlaps+MuAlZMuMu+DtCalib+HcalCalLowPUHBHEMuonFilter,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_DoubleMuon.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamDtCalib = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECODtCalib') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('DtCalib') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('DtCalib.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DSegmentsNoWire_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_dttfDigis_*_*', + 'keep *_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep recoMuons_muons_*_*', + 'keep booledmValueMap_muidAllArbitrated_*_*', + 'keep booledmValueMap_muidGMStaChiCompatibility_*_*', + 'keep booledmValueMap_muidGMTkChiCompatibility_*_*', + 'keep booledmValueMap_muidGMTkKinkTight_*_*', + 'keep booledmValueMap_muidGlobalMuonPromptTight_*_*', + 'keep booledmValueMap_muidRPCMuLoose_*_*', + 'keep booledmValueMap_muidTM2DCompatibilityLoose_*_*', + 'keep booledmValueMap_muidTM2DCompatibilityTight_*_*', + 'keep booledmValueMap_muidTMLastStationAngLoose_*_*', + 'keep booledmValueMap_muidTMLastStationAngTight_*_*', + 'keep booledmValueMap_muidTMLastStationLoose_*_*', + 'keep booledmValueMap_muidTMLastStationOptimizedLowPtLoose_*_*', + 'keep booledmValueMap_muidTMLastStationOptimizedLowPtTight_*_*', + 'keep booledmValueMap_muidTMLastStationTight_*_*', + 'keep booledmValueMap_muidTMOneStationAngLoose_*_*', + 'keep booledmValueMap_muidTMOneStationAngTight_*_*', + 'keep booledmValueMap_muidTMOneStationLoose_*_*', + 'keep booledmValueMap_muidTMOneStationTight_*_*', + 'keep booledmValueMap_muidTrackerMuonArbitrated_*_*' + ) +) +process.ALCARECOStreamHcalCalLowPUHBHEMuonFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalLowPUHBHEMuonFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalLowPUHBHEMuonFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalLowPUHBHEMuonFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep *_muons_*_*' + ) +) +process.ALCARECOStreamMuAlCalIsolatedMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlCalIsolatedMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlCalIsolatedMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlCalIsolatedMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlCalIsolatedMu_*_*', + 'keep *_ALCARECOMuAlCalIsolatedMuGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamMuAlOverlaps = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlOverlaps') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlOverlaps') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlOverlaps.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlOverlaps_*_*', + 'keep *_ALCARECOMuAlOverlapsGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamMuAlZMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlZMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlZMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlZMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlZMuMu_*_*', + 'keep *_ALCARECOMuAlZMuMuGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamTkAlZMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlZMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlZMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlZMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlZMuMu_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlZMuMu_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlOverlaps_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlZMuMu_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECODtCalib_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalLowPUHBHEMuonFilter_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlCalIsolatedMu_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamDtCalibOutPath = cms.EndPath(process.ALCARECOStreamDtCalib) +process.ALCARECOStreamHcalCalLowPUHBHEMuonFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalLowPUHBHEMuonFilter) +process.ALCARECOStreamMuAlCalIsolatedMuOutPath = cms.EndPath(process.ALCARECOStreamMuAlCalIsolatedMu) +process.ALCARECOStreamMuAlOverlapsOutPath = cms.EndPath(process.ALCARECOStreamMuAlOverlaps) +process.ALCARECOStreamMuAlZMuMuOutPath = cms.EndPath(process.ALCARECOStreamMuAlZMuMu) +process.ALCARECOStreamTkAlZMuMuOutPath = cms.EndPath(process.ALCARECOStreamTkAlZMuMu) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOMuAlZMuMu,process.pathALCARECOMuAlZMuMuGeneralTracks,process.pathALCARECOMuAlOverlaps,process.pathALCARECOMuAlOverlapsGeneralTracks,process.pathALCARECOTkAlZMuMu,process.pathALCARECODtCalib,process.pathALCARECOHcalCalLowPUHBHEMuonFilter,process.pathALCARECOMuAlCalIsolatedMu,process.pathALCARECOMuAlCalIsolatedMuGeneralTracks,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamDtCalibOutPath,process.ALCARECOStreamHcalCalLowPUHBHEMuonFilterOutPath,process.ALCARECOStreamMuAlCalIsolatedMuOutPath,process.ALCARECOStreamMuAlOverlapsOutPath,process.ALCARECOStreamMuAlZMuMuOutPath,process.ALCARECOStreamTkAlZMuMuOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_HTMHT.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_HTMHT.py new file mode 100644 index 000000000..35d7e0b06 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_HTMHT.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_HTMHT.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_JetHT.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_JetHT.py new file mode 100644 index 000000000..e6e64cd93 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_JetHT.py @@ -0,0 +1,1336 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:JetHTJetPlusHOFilter+LogError+LogErrorMonitor,ALCA:HcalCalIsoTrkFilter+HcalCalIsolatedBunchFilter+TkAlMinBias,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_JetHT.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamHcalCalIsoTrkFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIsoTrkFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIsoTrkFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIsoTrkFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_gtStage2Digis_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_towerMaker_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_hltTriggerSummaryAOD_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_generalTracks_*_*', + 'keep *_generalTracksExtra_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_TkAlIsoProdFilter_*_*' + ) +) +process.ALCARECOStreamHcalCalIsolatedBunchFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIsolatedBunchFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIsolatedBunchFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIsolatedBunchFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_hltTriggerSummaryAOD_*_*', + 'keep *_TriggerResults_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*' + ) +) +process.ALCARECOStreamTkAlMinBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlMinBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlMinBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlMinBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlMinBias_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*' + ) +) +process.SKIMStreamJetHTJetPlusHOFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('JetHTJetPlusHOFilterPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('JetHTJetPlusHOFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('JetHTJetPlusHOFilter.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlMinBias_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIsolatedBunchFilter_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIsoTrkFilter_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamHcalCalIsoTrkFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIsoTrkFilter) +process.ALCARECOStreamHcalCalIsolatedBunchFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIsolatedBunchFilter) +process.ALCARECOStreamTkAlMinBiasOutPath = cms.EndPath(process.ALCARECOStreamTkAlMinBias) +process.SKIMStreamJetHTJetPlusHOFilterOutPath = cms.EndPath(process.SKIMStreamJetHTJetPlusHOFilter) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.JetHTJetPlusHOFilterPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOTkAlMinBias,process.pathALCARECOHcalCalIsolatedBunchFilter,process.pathALCARECOHcalCalIsoTrkFilter,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamHcalCalIsoTrkFilterOutPath,process.ALCARECOStreamHcalCalIsolatedBunchFilterOutPath,process.ALCARECOStreamTkAlMinBiasOutPath,process.SKIMStreamJetHTJetPlusHOFilterOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MET.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MET.py new file mode 100644 index 000000000..e9b3d6672 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MET.py @@ -0,0 +1,1673 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:HighMET+EXOMONOPOLE+LogError+LogErrorMonitor,ALCA:HcalCalNoise,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_MET.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamHcalCalNoise = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalNoise') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalNoise') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalNoise.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_HcalNoiseProd_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep edmTriggerResults_*_*_HLT' + ) +) +process.SKIMStreamEXOMONOPOLE = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('EXOMONOPOLEPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('EXOMONOPOLE') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EXOMONOPOLE.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', + 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoTracks_GsfGlobalElectronTest_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTracks_ctfPixelLess_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'drop doubles_*Jets_rhos_*', + 'drop doubles_*Jets_sigmas_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'drop recoHcalNoiseRBXs_*_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep recoPhotonCores_gedPhotonCore_*_*', + 'keep recoPhotons_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep *_hfRecoEcalCandidate_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'drop *_pfElectronTranslator_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep recoCaloClusters_pfElectronTranslator_*_*', + 'keep recoPreshowerClusters_pfElectronTranslator_*_*', + 'keep recoSuperClusters_pfElectronTranslator_*_*', + 'keep recoCaloClusters_pfPhotonTranslator_*_*', + 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', + 'keep recoSuperClusters_pfPhotonTranslator_*_*', + 'keep recoPhotons_pfPhotonTranslator_*_*', + 'keep recoPhotonCores_pfPhotonTranslator_*_*', + 'keep recoConversions_pfPhotonTranslator_*_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_multi5x5EndcapSuperClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapBasicClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapSuperClusters_*', + 'keep *_siStripClusters_*_*', + 'keep *_siPixelClusters_*_*', + 'drop *_generalTracks_*_*', + 'keep *_generalTracks_*_*', + 'drop *_generalTracks_QualityMasks_*', + 'keep *_ecalRecHit_EcalRecHitsEB_*', + 'keep *_ecalRecHit_EcalRecHitsEE_*', + 'keep *_hbhereco_*_*' + ) ) +) +process.SKIMStreamHighMET = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('condPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('HighMET') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HighMET.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalNoise_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamHcalCalNoiseOutPath = cms.EndPath(process.ALCARECOStreamHcalCalNoise) +process.SKIMStreamEXOMONOPOLEOutPath = cms.EndPath(process.SKIMStreamEXOMONOPOLE) +process.SKIMStreamHighMETOutPath = cms.EndPath(process.SKIMStreamHighMET) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.condPath,process.EXOMONOPOLEPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOHcalCalNoise,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamHcalCalNoiseOutPath,process.SKIMStreamEXOMONOPOLEOutPath,process.SKIMStreamHighMETOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MuOnia.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MuOnia.py new file mode 100644 index 000000000..054f0b3e5 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MuOnia.py @@ -0,0 +1,810 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:BPHSkim+LogError+LogErrorMonitor,ALCA:TkAlUpsilonMuMu,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_MuOnia.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamTkAlUpsilonMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlUpsilonMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlUpsilonMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlUpsilonMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlUpsilonMuMu_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.SKIMStreamBPHSkim = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('BPHSkimPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('BPHSkim') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('BPHSkim.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_HLT', + 'keep *_hltGtStage2ObjectMap_*_HLT', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *_gmtStage2Digis_Muon_RECO', + 'keep *_gtDigis_*_RECO', + 'keep *_oniaSelectedTracks_*_*', + 'keep *_oniaPhotonCandidates_*_*', + 'keep *_onia2MuMuPAT_*_*', + 'keep *_oniaV0Tracks_*_*', + 'keep PileupSummaryInfos_*_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlUpsilonMuMu_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamTkAlUpsilonMuMuOutPath = cms.EndPath(process.ALCARECOStreamTkAlUpsilonMuMu) +process.SKIMStreamBPHSkimOutPath = cms.EndPath(process.SKIMStreamBPHSkim) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.BPHSkimPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOTkAlUpsilonMuMu,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamTkAlUpsilonMuMuOutPath,process.SKIMStreamBPHSkimOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MuonEG.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MuonEG.py new file mode 100644 index 000000000..7adf5e9c8 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_MuonEG.py @@ -0,0 +1,1261 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:TopMuEG+LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_MuonEG.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamTopMuEG = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('TopMuEGPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('TopMuEG') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TopMuEG.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamTopMuEGOutPath = cms.EndPath(process.SKIMStreamTopMuEG) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.TopMuEGPath,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamTopMuEGOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SingleElectron.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SingleElectron.py new file mode 100644 index 000000000..4ced61ccc --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SingleElectron.py @@ -0,0 +1,990 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,ALCA:EcalUncalWElectron+EcalUncalZElectron+HcalCalIterativePhiSym+EcalESAlign,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_SingleElectron.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamEcalESAlign = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOEcalESAlign') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalESAlign') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalESAlign.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep ESDigiCollection_ecalPreshowerDigis_*_*', + 'keep SiPixelClusteredmNewDetSetVector_ecalAlCaESAlignTrackReducer_*_*', + 'keep SiStripClusteredmNewDetSetVector_ecalAlCaESAlignTrackReducer_*_*', + 'keep TrackingRecHitsOwned_ecalAlCaESAlignTrackReducer_*_*', + 'keep recoTrackExtras_ecalAlCaESAlignTrackReducer_*_*', + 'keep recoTracks_ecalAlCaESAlignTrackReducer_*_*', + 'keep recoBeamSpot_offlineBeamSpot_*_*' + ) +) +process.ALCARECOStreamEcalUncalWElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOEcalUncalWElectron') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalUncalWElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalUncalWElectron.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_pfMet_*_*', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep recoVertexs_offlinePrimaryVerticesWithBS_*_*', + 'keep *BeamSpot_offlineBeamSpot_*_*', + 'keep *_allConversions_*_*', + 'keep *_conversions_*_*', + 'keep *GsfTrack*_electronGsfTracks_*_*', + 'keep *_generator_*_*', + 'keep *_addPileupInfo_*_*', + 'keep *_genParticles_*_*', + 'keep recoGsfElectron*_gsfElectron*_*_*', + 'keep recoGsfElectron*_gedGsfElectrons_*_*', + 'keep recoGsfElectron*_gedGsfElectronCores_*_*', + 'keep recoPhoton*_gedPhoton_*_*', + 'keep recoCaloClusters_hfEMClusters_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_alCaIsolatedElectrons_*_*', + 'keep recoCaloClusters_cleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoCaloClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersCleaned_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersUncleaned_*_*', + 'keep recoCaloClusters_multi5x5SuperClusters_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoPreshowerCluster*_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_multi5x5PreshowerClusterShape_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_alcaElectronTracksReducer_*_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep edmConditionsInEventBlock_conditionsInEdm_*_*', + 'keep edmConditionsInLumiBlock_conditionsInEdm_*_*', + 'keep edmConditionsInRunBlock_conditionsInEdm_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *EcalRecHit*_alCaIsolatedElectrons_*_*', + 'keep *EcalRecHit*_reducedEcalRecHitsES_alCaRecHitsES_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_ecalDigis_*_*', + 'keep *EcalTriggerPrimitiveDigi*_ecalDigis_*_*', + 'keep *_ecalPreshowerDigis_*_*', + 'keep *_ecalDetIdToBeRecovered_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop recoCaloClusters_*_*_*', + 'drop recoSuperClusters_*_*_*', + 'drop recoPreshowerCluster*_*_*_*', + 'drop *EcalRecHit*_reducedEcalRecHitsES*_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_electronGsfTracks_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfElectronsrecoGsfElectronrecoGsfElectronsrecoGsfElectronedmrefhelperFindUsingAdvanceedmRefedmValueMap_gedGsfElectronsTmp_*_*', + 'drop recoConversions_conversions_uncleanedConversions_*', + 'drop recoGsfElectrons_gedGsfElectronsTmp_*_*', + 'drop recoGsfTracks_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfTrackExtras_uncleanedOnlyElectronGsfTracks_*_*' + ) +) +process.ALCARECOStreamEcalUncalZElectron = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'pathALCARECOEcalUncalZElectron', + 'pathALCARECOEcalUncalZSCElectron' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('EcalUncalZElectron') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EcalUncalZElectron.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_pfMet_*_*', + 'keep recoVertexs_offlinePrimaryVertices_*_*', + 'keep recoVertexs_offlinePrimaryVerticesWithBS_*_*', + 'keep *BeamSpot_offlineBeamSpot_*_*', + 'keep *_allConversions_*_*', + 'keep *_conversions_*_*', + 'keep *GsfTrack*_electronGsfTracks_*_*', + 'keep *_generator_*_*', + 'keep *_addPileupInfo_*_*', + 'keep *_genParticles_*_*', + 'keep recoGsfElectron*_gsfElectron*_*_*', + 'keep recoGsfElectron*_gedGsfElectrons_*_*', + 'keep recoGsfElectron*_gedGsfElectronCores_*_*', + 'keep recoPhoton*_gedPhoton_*_*', + 'keep recoCaloClusters_hfEMClusters_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_alCaIsolatedElectrons_*_*', + 'keep recoCaloClusters_cleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoCaloClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersCleaned_*_*', + 'keep recoCaloClusters_multi5x5BasicClustersUncleaned_*_*', + 'keep recoCaloClusters_multi5x5SuperClusters_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoPreshowerCluster*_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerCluster*_multi5x5PreshowerClusterShape_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_alcaElectronTracksReducer_*_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep edmConditionsInEventBlock_conditionsInEdm_*_*', + 'keep edmConditionsInLumiBlock_conditionsInEdm_*_*', + 'keep edmConditionsInRunBlock_conditionsInEdm_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_hltTriggerSummaryAOD_*_HLT', + 'keep *EcalRecHit*_alCaIsolatedElectrons_*_*', + 'keep *EcalRecHit*_reducedEcalRecHitsES_alCaRecHitsES_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_ecalDigis_*_*', + 'keep *EcalTriggerPrimitiveDigi*_ecalDigis_*_*', + 'keep *_ecalPreshowerDigis_*_*', + 'keep *_ecalDetIdToBeRecovered_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop recoCaloClusters_*_*_*', + 'drop recoSuperClusters_*_*_*', + 'drop recoPreshowerCluster*_*_*_*', + 'drop *EcalRecHit*_reducedEcalRecHitsES*_*_*', + 'keep reco*Clusters_pfElectronTranslator_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_electronGsfTracks_*_*', + 'drop TrajectorysToOnerecoGsfTracksAssociation_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfElectronsrecoGsfElectronrecoGsfElectronsrecoGsfElectronedmrefhelperFindUsingAdvanceedmRefedmValueMap_gedGsfElectronsTmp_*_*', + 'drop recoConversions_conversions_uncleanedConversions_*', + 'drop recoGsfElectrons_gedGsfElectronsTmp_*_*', + 'drop recoGsfTracks_uncleanedOnlyElectronGsfTracks_*_*', + 'drop recoGsfTrackExtras_uncleanedOnlyElectronGsfTracks_*_*' + ) +) +process.ALCARECOStreamHcalCalIterativePhiSym = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIterativePhiSym') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIterativePhiSym') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIterativePhiSym.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_horeco_*_*', + 'keep *_hfreco_*_*', + 'keep *_hbhereco_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep edmTriggerResults_*_*_HLT' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalESAlign_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalUncalWElectron_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIterativePhiSym_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOEcalUncalZElectron_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamEcalESAlignOutPath = cms.EndPath(process.ALCARECOStreamEcalESAlign) +process.ALCARECOStreamEcalUncalWElectronOutPath = cms.EndPath(process.ALCARECOStreamEcalUncalWElectron) +process.ALCARECOStreamEcalUncalZElectronOutPath = cms.EndPath(process.ALCARECOStreamEcalUncalZElectron) +process.ALCARECOStreamHcalCalIterativePhiSymOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIterativePhiSym) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOEcalESAlign,process.pathALCARECOEcalUncalWElectron,process.pathALCARECOHcalCalIterativePhiSym,process.pathALCARECOEcalUncalZElectron,process.pathALCARECOEcalUncalZSCElectron,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamEcalESAlignOutPath,process.ALCARECOStreamEcalUncalWElectronOutPath,process.ALCARECOStreamEcalUncalZElectronOutPath,process.ALCARECOStreamHcalCalIterativePhiSymOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SingleMuon.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SingleMuon.py new file mode 100644 index 000000000..0d6e55f0c --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SingleMuon.py @@ -0,0 +1,1683 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:MuonPOGSkim+ZMu+MuTau+LogError+LogErrorMonitor,ALCA:SiPixelCalSingleMuon+TkAlMuonIsolated+DtCalib+MuAlCalIsolatedMu+MuAlOverlaps+MuAlZMuMu+HcalCalHO+HcalCalIterativePhiSym+HcalCalHBHEMuonFilter+HcalCalHEMuonFilter,EI,PAT,DQM:@rerecoSingleMuon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_SingleMuon.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamDtCalib = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECODtCalib') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('DtCalib') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('DtCalib.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DSegmentsNoWire_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_dttfDigis_*_*', + 'keep *_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep recoMuons_muons_*_*', + 'keep booledmValueMap_muidAllArbitrated_*_*', + 'keep booledmValueMap_muidGMStaChiCompatibility_*_*', + 'keep booledmValueMap_muidGMTkChiCompatibility_*_*', + 'keep booledmValueMap_muidGMTkKinkTight_*_*', + 'keep booledmValueMap_muidGlobalMuonPromptTight_*_*', + 'keep booledmValueMap_muidRPCMuLoose_*_*', + 'keep booledmValueMap_muidTM2DCompatibilityLoose_*_*', + 'keep booledmValueMap_muidTM2DCompatibilityTight_*_*', + 'keep booledmValueMap_muidTMLastStationAngLoose_*_*', + 'keep booledmValueMap_muidTMLastStationAngTight_*_*', + 'keep booledmValueMap_muidTMLastStationLoose_*_*', + 'keep booledmValueMap_muidTMLastStationOptimizedLowPtLoose_*_*', + 'keep booledmValueMap_muidTMLastStationOptimizedLowPtTight_*_*', + 'keep booledmValueMap_muidTMLastStationTight_*_*', + 'keep booledmValueMap_muidTMOneStationAngLoose_*_*', + 'keep booledmValueMap_muidTMOneStationAngTight_*_*', + 'keep booledmValueMap_muidTMOneStationLoose_*_*', + 'keep booledmValueMap_muidTMOneStationTight_*_*', + 'keep booledmValueMap_muidTrackerMuonArbitrated_*_*' + ) +) +process.ALCARECOStreamHcalCalHBHEMuonFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalHBHEMuonFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalHBHEMuonFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalHBHEMuonFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep *_muons_*_*' + ) +) +process.ALCARECOStreamHcalCalHEMuonFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalHEMuonFilter') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalHEMuonFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalHEMuonFilter.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_hbhereco_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_TriggerResults_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep *_muons_*_*' + ) +) +process.ALCARECOStreamHcalCalHO = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalHO') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalHO') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalHO.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_hoCalibProducer_*_*' + ) +) +process.ALCARECOStreamHcalCalIterativePhiSym = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalIterativePhiSym') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalIterativePhiSym') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalIterativePhiSym.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_horeco_*_*', + 'keep *_hfreco_*_*', + 'keep *_hbhereco_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep *_scalersRawToDigi_*_*', + 'keep edmTriggerResults_*_*_HLT' + ) +) +process.ALCARECOStreamMuAlCalIsolatedMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlCalIsolatedMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlCalIsolatedMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlCalIsolatedMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlCalIsolatedMu_*_*', + 'keep *_ALCARECOMuAlCalIsolatedMuGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamMuAlOverlaps = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlOverlaps') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlOverlaps') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlOverlaps.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlOverlaps_*_*', + 'keep *_ALCARECOMuAlOverlapsGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamMuAlZMuMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOMuAlZMuMu') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('MuAlZMuMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuAlZMuMu.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOMuAlZMuMu_*_*', + 'keep *_ALCARECOMuAlZMuMuGeneralTracks_*_*', + 'keep *_muonCSCDigis_*_*', + 'keep *_muonDTDigis_*_*', + 'keep *_muonRPCDigis_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt2DSegments_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*' + ) +) +process.ALCARECOStreamSiPixelCalSingleMuon = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOSiPixelCalSingleMuon') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('SiPixelCalSingleMuon') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('SiPixelCalSingleMuon.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOSiPixelCalSingleMuon_*_*', + 'keep *_muons__*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_*riggerResults_*_HLT' + ) +) +process.ALCARECOStreamTkAlMuonIsolated = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlMuonIsolated') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlMuonIsolated') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlMuonIsolated.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlMuonIsolated_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamMuTau = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('MuTauPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('MuTau') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuTau.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'drop *', + 'keep *_slimmedPhotons_*_*', + 'keep *_slimmedOOTPhotons_*_*', + 'keep *_slimmedElectrons_*_*', + 'keep *_slimmedMuons_*_*', + 'keep *_slimmedTaus_*_*', + 'keep *_slimmedTausBoosted_*_*', + 'keep *_slimmedCaloJets_*_*', + 'keep *_slimmedJets_*_*', + 'drop recoBaseTagInfosOwned_slimmedJets_*_*', + 'keep *_slimmedJetsAK8_*_*', + 'drop recoBaseTagInfosOwned_slimmedJetsAK8_*_*', + 'keep *_slimmedJetsPuppi_*_*', + 'keep *_slimmedMETs_*_*', + 'keep *_slimmedMETsNoHF_*_*', + 'keep *_slimmedMETsPuppi_*_*', + 'keep *_slimmedSecondaryVertices_*_*', + 'keep *_slimmedLambdaVertices_*_*', + 'keep *_slimmedKshortVertices_*_*', + 'keep *_slimmedJetsAK8PFPuppiSoftDropPacked_SubJets_*', + 'keep recoPhotonCores_reducedEgamma_*_*', + 'keep recoGsfElectronCores_reducedEgamma_*_*', + 'keep recoConversions_reducedEgamma_*_*', + 'keep recoSuperClusters_reducedEgamma_*_*', + 'keep recoCaloClusters_reducedEgamma_*_*', + 'keep EcalRecHitsSorted_reducedEgamma_*_*', + 'keep recoGsfTracks_reducedEgamma_*_*', + 'keep HBHERecHitsSorted_reducedEgamma_*_*', + 'drop *_*_caloTowers_*', + 'drop *_*_pfCandidates_*', + 'drop *_*_genJets_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_offlineSlimmedPrimaryVertices_*_*', + 'keep patPackedCandidates_packedPFCandidates_*_*', + 'keep *_isolatedTracks_*_*', + 'keep *_oniaPhotonCandidates_*_*', + 'keep *_bunchSpacingProducer_*_*', + 'keep double_fixedGridRhoAll__*', + 'keep double_fixedGridRhoFastjetAll__*', + 'keep double_fixedGridRhoFastjetAllTmp__*', + 'keep double_fixedGridRhoFastjetAllCalo__*', + 'keep double_fixedGridRhoFastjetCentral_*_*', + 'keep double_fixedGridRhoFastjetCentralCalo__*', + 'keep double_fixedGridRhoFastjetCentralChargedPileUp__*', + 'keep double_fixedGridRhoFastjetCentralNeutral__*', + 'keep *_slimmedPatTrigger_*_*', + 'keep patPackedTriggerPrescales_patTrigger__*', + 'keep patPackedTriggerPrescales_patTrigger_l1max_*', + 'keep patPackedTriggerPrescales_patTrigger_l1min_*', + 'keep *_l1extraParticles_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_gtStage2Digis__*', + 'keep *_gmtStage2Digis_Muon_*', + 'keep *_caloStage2Digis_Jet_*', + 'keep *_caloStage2Digis_Tau_*', + 'keep *_caloStage2Digis_EGamma_*', + 'keep *_caloStage2Digis_EtSum_*', + 'keep *_TriggerResults_*_HLT', + 'keep *_TriggerResults_*_*', + 'keep patPackedCandidates_lostTracks_*_*', + 'keep HcalNoiseSummary_hcalnoise__*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep *_prefiringweight_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) +) +process.SKIMStreamMuonPOGSkim = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring( + 'MuonPOGSkimTrackPath', + 'MuonPOGSkimSTAPath' + ) + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('MuonPOGSkim') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('MuonPOGSkim.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_TriggerResults_*_*', + 'keep *_gmtStage2Digis_Muon_*', + 'keep *_offlineSlimmedPrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep *_slimmedMETs_*_*', + 'keep *Muons*_slimmedMuons_*_*', + 'keep *_isolatedTracks_*_*', + 'keep *_slimmedPatTrigger_*_*', + 'keep *_slimmedJets_*_*' + ) +) +process.SKIMStreamZMu = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('ZMuSkimPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('ZMu') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('ZMu.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalHBHEMuonFilter_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlZMuMu_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlOverlaps_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOSiPixelCalSingleMuon_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlMuonIsolated_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalIterativePhiSym_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECODtCalib_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOMuAlCalIsolatedMu_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalHO_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalHEMuonFilter_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineLumi) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_10_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamDtCalibOutPath = cms.EndPath(process.ALCARECOStreamDtCalib) +process.ALCARECOStreamHcalCalHBHEMuonFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalHBHEMuonFilter) +process.ALCARECOStreamHcalCalHEMuonFilterOutPath = cms.EndPath(process.ALCARECOStreamHcalCalHEMuonFilter) +process.ALCARECOStreamHcalCalHOOutPath = cms.EndPath(process.ALCARECOStreamHcalCalHO) +process.ALCARECOStreamHcalCalIterativePhiSymOutPath = cms.EndPath(process.ALCARECOStreamHcalCalIterativePhiSym) +process.ALCARECOStreamMuAlCalIsolatedMuOutPath = cms.EndPath(process.ALCARECOStreamMuAlCalIsolatedMu) +process.ALCARECOStreamMuAlOverlapsOutPath = cms.EndPath(process.ALCARECOStreamMuAlOverlaps) +process.ALCARECOStreamMuAlZMuMuOutPath = cms.EndPath(process.ALCARECOStreamMuAlZMuMu) +process.ALCARECOStreamSiPixelCalSingleMuonOutPath = cms.EndPath(process.ALCARECOStreamSiPixelCalSingleMuon) +process.ALCARECOStreamTkAlMuonIsolatedOutPath = cms.EndPath(process.ALCARECOStreamTkAlMuonIsolated) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamMuTauOutPath = cms.EndPath(process.SKIMStreamMuTau) +process.SKIMStreamMuonPOGSkimOutPath = cms.EndPath(process.SKIMStreamMuonPOGSkim) +process.SKIMStreamZMuOutPath = cms.EndPath(process.SKIMStreamZMu) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.MuonPOGSkimTrackPath,process.MuonPOGSkimSTAPath,process.MuTauPath,process.ZMuSkimPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOHcalCalHBHEMuonFilter,process.pathALCARECOMuAlZMuMu,process.pathALCARECOMuAlZMuMuGeneralTracks,process.pathALCARECOMuAlOverlaps,process.pathALCARECOMuAlOverlapsGeneralTracks,process.pathALCARECOSiPixelCalSingleMuon,process.pathALCARECOTkAlMuonIsolated,process.pathALCARECOHcalCalIterativePhiSym,process.pathALCARECODtCalib,process.pathALCARECOMuAlCalIsolatedMu,process.pathALCARECOMuAlCalIsolatedMuGeneralTracks,process.pathALCARECOHcalCalHO,process.pathALCARECOHcalCalHEMuonFilter,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmoffline_10_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamDtCalibOutPath,process.ALCARECOStreamHcalCalHBHEMuonFilterOutPath,process.ALCARECOStreamHcalCalHEMuonFilterOutPath,process.ALCARECOStreamHcalCalHOOutPath,process.ALCARECOStreamHcalCalIterativePhiSymOutPath,process.ALCARECOStreamMuAlCalIsolatedMuOutPath,process.ALCARECOStreamMuAlOverlapsOutPath,process.ALCARECOStreamMuAlZMuMuOutPath,process.ALCARECOStreamSiPixelCalSingleMuonOutPath,process.ALCARECOStreamTkAlMuonIsolatedOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamMuTauOutPath,process.SKIMStreamMuonPOGSkimOutPath,process.SKIMStreamZMuOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SinglePhoton.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SinglePhoton.py new file mode 100644 index 000000000..0abca7a44 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_SinglePhoton.py @@ -0,0 +1,1703 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:SinglePhotonJetPlusHOFilter+EXOMONOPOLE+LogError+LogErrorMonitor,ALCA:HcalCalGammaJet,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_SinglePhoton.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamHcalCalGammaJet = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOHcalCalGammaJet') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('HcalCalGammaJet') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('HcalCalGammaJet.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoPhotonCores_gedPhotonCore_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoPhotonCores_reducedEgamma_reducedGedPhotonCores_*', + 'keep recoSuperClusters_SCselector_*_*', + 'keep recoSuperClusters_cleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_hfEMClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_mergedSuperClusters__*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_uncleanedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedHybridSuperClusters_*_*', + 'keep recoSuperClusters_uncleanedOnlyCorrectedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_uncleanedOnlyMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersCleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersUncleaned_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_reducedEgamma_reducedSuperClusters_*', + 'keep recoTracks_generalTracks_*_*', + 'keep *_particleFlow_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterECALUncorrected_*_*', + 'keep recoPFClusters_particleFlowClusterHBHE_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep *_GammaJetProd_*_*' + ) +) +process.SKIMStreamEXOMONOPOLE = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('EXOMONOPOLEPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('EXOMONOPOLE') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('EXOMONOPOLE.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep recoCaloClusters_hybridSuperClusters_*_*', + 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', + 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterOOTECAL_*_*', + 'keep recoTracks_GsfGlobalElectronTest_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTracks_ctfPixelLess_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'drop doubles_*Jets_rhos_*', + 'drop doubles_*Jets_sigmas_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'drop recoHcalNoiseRBXs_*_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep recoPhotonCores_gedPhotonCore_*_*', + 'keep recoPhotons_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep *_hfRecoEcalCandidate_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'drop *_pfElectronTranslator_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep recoCaloClusters_pfElectronTranslator_*_*', + 'keep recoPreshowerClusters_pfElectronTranslator_*_*', + 'keep recoSuperClusters_pfElectronTranslator_*_*', + 'keep recoCaloClusters_pfPhotonTranslator_*_*', + 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', + 'keep recoSuperClusters_pfPhotonTranslator_*_*', + 'keep recoPhotons_pfPhotonTranslator_*_*', + 'keep recoPhotonCores_pfPhotonTranslator_*_*', + 'keep recoConversions_pfPhotonTranslator_*_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_multi5x5EndcapSuperClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapBasicClusters_*', + 'keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapSuperClusters_*', + 'keep *_siStripClusters_*_*', + 'keep *_siPixelClusters_*_*', + 'drop *_generalTracks_*_*', + 'keep *_generalTracks_*_*', + 'drop *_generalTracks_QualityMasks_*', + 'keep *_ecalRecHit_EcalRecHitsEB_*', + 'keep *_ecalRecHit_EcalRecHitsEE_*', + 'keep *_hbhereco_*_*' + ) ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) +process.SKIMStreamSinglePhotonJetPlusHOFilter = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('SinglePhotonJetPlusHOFilterPath') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('SinglePhotonJetPlusHOFilter') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('SinglePhotonJetPlusHOFilter.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOHcalCalGammaJet_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamHcalCalGammaJetOutPath = cms.EndPath(process.ALCARECOStreamHcalCalGammaJet) +process.SKIMStreamEXOMONOPOLEOutPath = cms.EndPath(process.SKIMStreamEXOMONOPOLE) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) +process.SKIMStreamSinglePhotonJetPlusHOFilterOutPath = cms.EndPath(process.SKIMStreamSinglePhotonJetPlusHOFilter) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.SinglePhotonJetPlusHOFilterPath,process.EXOMONOPOLEPath,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOHcalCalGammaJet,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamHcalCalGammaJetOutPath,process.SKIMStreamEXOMONOPOLEOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath,process.SKIMStreamSinglePhotonJetPlusHOFilterOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_Tau.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_Tau.py new file mode 100644 index 000000000..db75bbe32 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_Tau.py @@ -0,0 +1,760 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,EI,PAT,DQM:@rerecoCommon --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_Tau.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommon) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmoffline_9_step = cms.EndPath(process.DQMOfflineL1TMonitoring) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmoffline_9_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion diff --git a/cms-2016-collision-datasets/outputs/recoskim_Run2016H_ZeroBias.py b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_ZeroBias.py new file mode 100644 index 000000000..badaf93a8 --- /dev/null +++ b/cms-2016-collision-datasets/outputs/recoskim_Run2016H_ZeroBias.py @@ -0,0 +1,867 @@ +# Auto generated configuration file +# using: +# Revision: 1.19 +# Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v +# with command line options: RECO -s RAW2DIGI,L1Reco,RECO,SKIM:LogError+LogErrorMonitor,ALCA:SiStripCalZeroBias+TkAlMinBias+LumiPixelsMinBias+SiStripCalMinBias+AlCaPCCZeroBiasFromRECO,EI,PAT,DQM:@rerecoZeroBias --runUnscheduled --nThreads 8 --data --era Run2_2016 --scenario pp --conditions 106X_dataRun2_v27 --eventcontent AOD,MINIAOD,DQM --datatier AOD,MINIAOD,DQMIO --customise Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,Configuration/DataProcessing/Utils.addMonitoring --filein file:test.root -n 100 --python_filename=recoskim_Run2016H_ZeroBias.py --no_exec +import FWCore.ParameterSet.Config as cms + +from Configuration.Eras.Era_Run2_2016_cff import Run2_2016 + +process = cms.Process('RECO',Run2_2016) + +# import of standard configurations +process.load('Configuration.StandardSequences.Services_cff') +process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') +process.load('FWCore.MessageService.MessageLogger_cfi') +process.load('Configuration.EventContent.EventContent_cff') +process.load('Configuration.StandardSequences.GeometryRecoDB_cff') +process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff') +process.load('Configuration.StandardSequences.RawToDigi_Data_cff') +process.load('Configuration.StandardSequences.L1Reco_cff') +process.load('Configuration.StandardSequences.Reconstruction_Data_cff') +process.load('Configuration.StandardSequences.Skims_cff') +process.load('Configuration.StandardSequences.AlCaRecoStreams_cff') +process.load('CommonTools.ParticleFlow.EITopPAG_cff') +process.load('PhysicsTools.PatAlgos.slimming.metFilterPaths_cff') +process.load('Configuration.StandardSequences.PAT_cff') +process.load('DQMServices.Core.DQMStoreNonLegacy_cff') +process.load('DQMOffline.Configuration.DQMOffline_cff') +process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') + +process.maxEvents = cms.untracked.PSet( + input = cms.untracked.int32(100) +) + +# Input source +process.source = cms.Source("PoolSource", + fileNames = cms.untracked.vstring('file:test.root'), + secondaryFileNames = cms.untracked.vstring() +) + +process.options = cms.untracked.PSet( + +) + +# Production Info +process.configurationMetadata = cms.untracked.PSet( + annotation = cms.untracked.string('RECO nevts:100'), + name = cms.untracked.string('Applications'), + version = cms.untracked.string('$Revision: 1.19 $') +) + +# Output definition + +process.AODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('AOD'), + filterName = cms.untracked.string('') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(31457280), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM.root'), + outputCommands = process.AODEventContent.outputCommands +) + +process.MINIAODoutput = cms.OutputModule("PoolOutputModule", + compressionAlgorithm = cms.untracked.string('LZMA'), + compressionLevel = cms.untracked.int32(4), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('MINIAOD'), + filterName = cms.untracked.string('') + ), + dropMetaData = cms.untracked.string('ALL'), + eventAutoFlushCompressedSize = cms.untracked.int32(-900), + fastCloning = cms.untracked.bool(False), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inMINIAOD.root'), + outputCommands = process.MINIAODEventContent.outputCommands, + overrideBranchesSplitLevel = cms.untracked.VPSet( + cms.untracked.PSet( + branch = cms.untracked.string('patPackedCandidates_packedPFCandidates__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenParticles_prunedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patTriggerObjectStandAlones_slimmedPatTrigger__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patPackedGenParticles_packedGenParticles__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoVertexs_offlineSlimmedPrimaryVertices__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoCaloClusters_reducedEgamma_reducedESClusters_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEBRecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedEERecHits_*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('recoGenJets_slimmedGenJets__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('patJets_slimmedJetsPuppi__*'), + splitLevel = cms.untracked.int32(99) + ), + cms.untracked.PSet( + branch = cms.untracked.string('EcalRecHitsSorted_reducedEgamma_reducedESRecHits_*'), + splitLevel = cms.untracked.int32(99) + ) + ), + overrideInputFileSplitLevels = cms.untracked.bool(True), + splitLevel = cms.untracked.int32(0) +) + +process.DQMoutput = cms.OutputModule("DQMRootOutputModule", + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('DQMIO'), + filterName = cms.untracked.string('') + ), + fileName = cms.untracked.string('RECO_RAW2DIGI_L1Reco_RECO_SKIM_ALCA_EI_PAT_DQM_inDQM.root'), + outputCommands = process.DQMEventContent.outputCommands, + splitLevel = cms.untracked.int32(0) +) + +# Additional output definition +process.ALCARECOStreamAlCaPCCZeroBiasFromRECO = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOAlCaPCCZeroBiasFromRECO') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('AlCaPCCZeroBiasFromRECO') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('AlCaPCCZeroBiasFromRECO.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_*alcaPCCProducerZeroBias*_*_*' + ) +) +process.ALCARECOStreamLumiPixelsMinBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOLumiPixelsMinBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('LumiPixelsMinBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LumiPixelsMinBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_siPixelClusters_*_*', + 'keep *_TriggerResults_*_HLT', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_HLT', + 'keep *_offlinePrimaryVertices_*_*' + ) +) +process.ALCARECOStreamSiStripCalMinBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOSiStripCalMinBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('SiStripCalMinBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('SiStripCalMinBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOSiStripCalMinBias_*_*', + 'keep *_siStripClusters_*_*', + 'keep *_siPixelClusters_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_TriggerResults_*_*' + ) +) +process.ALCARECOStreamSiStripCalZeroBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOSiStripCalZeroBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('SiStripCalZeroBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('SiStripCalZeroBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOSiStripCalZeroBias_*_*', + 'keep *_calZeroBiasClusters_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep *_TriggerResults_*_*' + ) +) +process.ALCARECOStreamTkAlMinBias = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathALCARECOTkAlMinBias') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('ALCARECO'), + filterName = cms.untracked.string('TkAlMinBias') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('TkAlMinBias.root'), + outputCommands = cms.untracked.vstring( + 'drop *', + 'keep *_ALCARECOTkAlMinBias_*_*', + 'keep L1AcceptBunchCrossings_*_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_TriggerResults_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep *_offlinePrimaryVertices_*_*', + 'keep *_offlineBeamSpot_*_*' + ) +) +process.SKIMStreamLogError = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerror') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('RAW-RECO'), + filterName = cms.untracked.string('LogError') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogError.root'), + outputCommands = cms.untracked.vstring( ( + 'drop *', + 'drop *', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'drop *_hlt*_*_*', + 'keep FEDRawDataCollection_rawDataCollector_*_*', + 'keep FEDRawDataCollection_source_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep DetIdedmEDCollection_siStripDigis_*_*', + 'keep DetIdedmEDCollection_siPixelDigis_*_*', + 'keep PixelFEDChanneledmNewDetSetVector_siPixelDigis_*_*', + 'keep *_siPixelClusters_*_*', + 'keep *_siStripClusters_*_*', + 'keep ClusterSummary_clusterSummaryProducer_*_*', + 'keep *_dt1DRecHits_*_*', + 'keep *_dt4DSegments_*_*', + 'keep *_dt1DCosmicRecHits_*_*', + 'keep *_dt4DCosmicSegments_*_*', + 'keep *_csc2DRecHits_*_*', + 'keep *_cscSegments_*_*', + 'keep *_rpcRecHits_*_*', + 'keep *_hbhereco_*_*', + 'keep *_hbheprereco_*_*', + 'keep *_hfprereco_*_*', + 'keep *_hfreco_*_*', + 'keep *_horeco_*_*', + 'keep HBHERecHitsSorted_hbherecoMB_*_*', + 'keep HORecHitsSorted_horecoMB_*_*', + 'keep HFRecHitsSorted_hfrecoMB_*_*', + 'keep ZDCDataFramesSorted_hcalDigis_*_*', + 'keep ZDCDataFramesSorted_castorDigis_*_*', + 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_ZDC_*', + 'keep ZDCRecHitsSorted_zdcreco_*_*', + 'keep *_reducedHcalRecHits_*_*', + 'keep *_castorreco_*_*', + 'keep HcalUnpackerReport_castorDigis_*_*', + 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', + 'keep HcalUnpackerReport_hcalDigis_*_*', + 'keep *_ecalPreshowerRecHit_*_*', + 'keep *_ecalRecHit_*_*', + 'keep *_ecalCompactTrigPrim_*_*', + 'keep *_ecalTPSkim_*_*', + 'keep EBSrFlagsSorted_ecalDigis__*', + 'keep EESrFlagsSorted_ecalDigis__*', + 'keep *_selectDigi_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', + 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', + 'keep *_hybridSuperClusters_*_*', + 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', + 'keep *_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClusters_*_*', + 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', + 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', + 'keep *_particleFlowSuperClusterECAL_*_*', + 'keep *_particleFlowSuperClusterOOTECAL_*_*', + 'drop recoClusterShapes_*_*_*', + 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', + 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', + 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', + 'keep *_CkfElectronCandidates_*_*', + 'keep *_GsfGlobalElectronTest_*_*', + 'keep *_electronMergedSeeds_*_*', + 'keep recoGsfTracks_electronGsfTracks_*_*', + 'keep recoGsfTrackExtras_electronGsfTracks_*_*', + 'keep recoTrackExtras_electronGsfTracks_*_*', + 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTrackExtras_generalTracks_*_*', + 'keep TrackingRecHitsOwned_generalTracks_*_*', + 'keep *_generalTracks_MVAValues_*', + 'keep *_generalTracks_MVAVals_*', + 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', + 'keep uints_extraFromSeeds_*_*', + 'keep recoTracks_beamhaloTracks_*_*', + 'keep recoTrackExtras_beamhaloTracks_*_*', + 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', + 'keep recoTracks_conversionStepTracks_*_*', + 'keep recoTrackExtras_conversionStepTracks_*_*', + 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', + 'keep *_ctfPixelLess_*_*', + 'keep *_dedxTruncated40_*_*', + 'keep *_dedxHitInfo_*_*', + 'keep *_dedxHarmonic2_*_*', + 'keep *_dedxPixelHarmonic2_*_*', + 'keep *_trackExtrapolator_*_*', + 'keep recoTracks_cosmicDCTracks_*_*', + 'keep recoTrackExtras_cosmicDCTracks_*_*', + 'keep TrackingRecHitsOwned_cosmicDCTracks_*_*', + 'keep *_ak4CaloJets_*_*', + 'keep *_ak4PFJets_*_*', + 'keep *_ak4PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHS_*_*', + 'keep *_ak8PFJetsCHSSoftDrop_*_*', + 'keep *_cmsTopTagPFJetsCHS_*_*', + 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', + 'keep *_ak4TrackJets_*_*', + 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', + 'keep *_caloTowers_*_*', + 'keep *_towerMaker_*_*', + 'keep *_CastorTowerReco_*_*', + 'keep *_ak4JetTracksAssociatorAtVertex_*_*', + 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', + 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', + 'keep *_ak4JetTracksAssociatorExplicit_*_*', + 'keep *_ak4JetExtender_*_*', + 'keep *_ak4JetID_*_*', + 'keep *_ak5CastorJets_*_*', + 'keep *_ak5CastorJetID_*_*', + 'keep *_ak7CastorJets_*_*', + 'keep *_ak7CastorJetID_*_*', + 'keep *_fixedGridRhoAll_*_*', + 'keep *_fixedGridRhoFastjetAll_*_*', + 'keep *_fixedGridRhoFastjetAllTmp_*_*', + 'keep *_fixedGridRhoFastjetAllCalo_*_*', + 'keep *_fixedGridRhoFastjetCentral_*_*', + 'keep *_fixedGridRhoFastjetCentralCalo_*_*', + 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', + 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', + 'keep *_ak8PFJetsCHSSoftDropMass_*_*', + 'keep recoCaloMETs_caloMet_*_*', + 'keep recoCaloMETs_caloMetBE_*_*', + 'keep recoCaloMETs_caloMetBEFO_*_*', + 'keep recoCaloMETs_caloMetM_*_*', + 'keep recoPFMETs_pfMet_*_*', + 'keep recoPFMETs_pfChMet_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', + 'keep recoHcalNoiseRBXs_hcalnoise_*_*', + 'keep HcalNoiseSummary_hcalnoise_*_*', + 'keep recoCSCHaloData_CSCHaloData_*_*', + 'keep recoEcalHaloData_EcalHaloData_*_*', + 'keep recoGlobalHaloData_GlobalHaloData_*_*', + 'keep recoHcalHaloData_HcalHaloData_*_*', + 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', + 'keep *_MuonSeed_*_*', + 'keep *_ancientMuonSeed_*_*', + 'keep *_displacedMuonSeeds_*_*', + 'keep TrackingRecHitsOwned_globalMuons_*_*', + 'keep TrackingRecHitsOwned_tevMuons_*_*', + 'keep *_CosmicMuonSeed_*_*', + 'keep recoTrackExtras_cosmicMuons_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons_*_*', + 'keep recoTrackExtras_cosmicMuons1Leg_*_*', + 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', + 'keep recoTracks_cosmicsVetoTracks_*_*', + 'keep *_muons_*_*', + 'keep *_particleFlow_muons_*', + 'drop *_muons_muons1stStep2muonsMap_*', + 'drop recoIsoDepositedmValueMap_muons_*_*', + 'drop doubleedmValueMap_muons_muPFIso*_*', + 'keep recoTracks_standAloneMuons_*_*', + 'keep recoTrackExtras_standAloneMuons_*_*', + 'keep TrackingRecHitsOwned_standAloneMuons_*_*', + 'keep recoTracks_globalMuons_*_*', + 'keep recoTrackExtras_globalMuons_*_*', + 'keep recoTracks_tevMuons_*_*', + 'keep recoTrackExtras_tevMuons_*_*', + 'keep recoTracks_generalTracks_*_*', + 'keep recoTracks_displacedTracks_*_*', + 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', + 'keep recoTracks_displacedGlobalMuons_*_*', + 'keep recoTrackExtras_displacedGlobalMuons_*_*', + 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', + 'keep recoTracks_cosmicMuons_*_*', + 'keep recoMuons_muonsFromCosmics_*_*', + 'keep recoTracks_cosmicMuons1Leg_*_*', + 'keep recoMuons_muonsFromCosmics1Leg_*_*', + 'keep recoTracks_refittedStandAloneMuons_*_*', + 'keep recoTrackExtras_refittedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', + 'keep recoTracks_displacedStandAloneMuons__*', + 'keep recoTrackExtras_displacedStandAloneMuons_*_*', + 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', + 'keep *_muIsoDepositTk_*_*', + 'keep *_muIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muIsoDepositCalByAssociatorHits_*_*', + 'keep *_muIsoDepositJets_*_*', + 'keep *_muGlobalIsoDepositCtfTk_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', + 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', + 'keep *_muGlobalIsoDepositJets_*_*', + 'keep *_softPFMuonsTagInfos_*_*', + 'keep *_softPFElectronsTagInfos_*_*', + 'keep *_softPFElectronBJetTags_*_*', + 'keep *_softPFMuonBJetTags_*_*', + 'keep *_pfImpactParameterTagInfos_*_*', + 'keep *_pfTrackCountingHighEffBJetTags_*_*', + 'keep *_pfJetProbabilityBJetTags_*_*', + 'keep *_pfJetBProbabilityBJetTags_*_*', + 'keep *_pfSecondaryVertexTagInfos_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', + 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', + 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', + 'keep *_pfGhostTrackVertexTagInfos_*_*', + 'keep *_pfGhostTrackBJetTags_*_*', + 'keep *_pfCombinedMVAV2BJetTags_*_*', + 'keep *_inclusiveCandidateSecondaryVertices_*_*', + 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', + 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', + 'keep *_pfCombinedCvsLJetTags_*_*', + 'keep *_pfCombinedCvsBJetTags_*_*', + 'keep *_pfChargeBJetTags_*_*', + 'keep *_pfDeepCSVJetTags_*_*', + 'keep *_pfDeepCMVAJetTags_*_*', + 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', + 'keep recoPFTaus_hpsPFTauProducer_*_*', + 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', + 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', + 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', + 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', + 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauNeutralIsoPtSum_*_*', + 'keep *_hpsPFTauPUcorrPtSum_*_*', + 'keep *_hpsPFTauChargedIsoPtSum_*_*', + 'keep *_hpsPFTauTransverseImpactParameters_*_*', + 'keep *_hpsPFTauFootprintCorrection_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', + 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', + 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', + 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', + 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', + 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', + 'keep *_offlinePrimaryVertices__*', + 'keep *_offlinePrimaryVerticesWithBS_*_*', + 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', + 'keep *_nuclearInteractionMaker_*_*', + 'keep *_generalV0Candidates_*_*', + 'keep *_inclusiveSecondaryVertices_*_*', + 'keep recoGsfElectronCores_gsfElectronCores_*_*', + 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', + 'keep recoGsfElectrons_gsfElectrons_*_*', + 'keep recoGsfElectrons_gedGsfElectrons_*_*', + 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', + 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', + 'keep floatedmValueMap_eidRobustLoose_*_*', + 'keep floatedmValueMap_eidRobustTight_*_*', + 'keep floatedmValueMap_eidRobustHighEnergy_*_*', + 'keep floatedmValueMap_eidLoose_*_*', + 'keep floatedmValueMap_eidTight_*_*', + 'keep *_egmGedGsfElectronPFIsolation_*_*', + 'drop *_egmGsfElectronIDs_*_*', + 'drop *_egmPhotonIDs_*_*', + 'keep *_gedPhotonCore_*_*', + 'keep *_gedPhotons_*_*', + 'keep *_particleBasedIsolation_*_*', + 'keep recoPhotons_mustachePhotons_*_*', + 'keep recoPhotonCores_mustachePhotonCore_*_*', + 'keep recoPhotons_ootPhotons_*_*', + 'keep recoPhotonCores_ootPhotonCore_*_*', + 'keep recoPhotons_photons_*_*', + 'keep recoPhotonCores_photonCore_*_*', + 'keep recoConversions_conversions_*_*', + 'keep recoConversions_mustacheConversions_*_*', + 'keep *_gsfTracksOpenConversions_*_*', + 'drop *_conversions_uncleanedConversions_*', + 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', + 'keep recoConversions_allConversions_*_*', + 'keep recoConversions_allConversionsOldEG_*_*', + 'keep recoTracks_ckfOutInTracksFromConversions_*_*', + 'keep recoTracks_ckfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', + 'keep recoConversions_uncleanedOnlyAllConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', + 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', + 'keep *_PhotonIDProd_*_*', + 'keep *_PhotonIDProdGED_*_*', + 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', + 'keep *_hfEMClusters_*_*', + 'keep *_gedGsfElectronCores_*_*', + 'keep *_gedGsfElectrons_*_*', + 'keep recoCaloClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep recoGsfElectrons_lowPtGsfElectrons_*_*', + 'keep recoGsfElectronCores_lowPtGsfElectronCores_*_*', + 'keep recoGsfTracks_lowPtGsfEleGsfTracks_*_*', + 'keep *_lowPtGsfToTrackLinks_*_*', + 'keep recoSuperClusters_lowPtGsfElectronSuperClusters_*_*', + 'keep floatedmValueMap_lowPtGsfElectronSeedValueMaps_*_*', + 'keep floatedmValueMap_lowPtGsfElectronID_*_*', + 'keep *_pixelTracks_*_*', + 'keep *_pixelVertices_*_*', + 'drop CaloTowersSorted_towerMakerPF_*_*', + 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', + 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', + 'keep recoPFClusters_particleFlowClusterECAL_*_*', + 'keep recoPFClusters_particleFlowClusterHCAL_*_*', + 'keep recoPFClusters_particleFlowClusterHO_*_*', + 'keep recoPFClusters_particleFlowClusterHF_*_*', + 'keep recoPFClusters_particleFlowClusterPS_*_*', + 'keep recoPFBlocks_particleFlowBlock_*_*', + 'keep recoPFCandidates_particleFlowEGamma_*_*', + 'keep recoCaloClusters_particleFlowEGamma_*_*', + 'keep recoSuperClusters_particleFlowEGamma_*_*', + 'keep recoConversions_particleFlowEGamma_*_*', + 'keep recoPFCandidates_particleFlow_*_*', + 'keep recoPFCandidates_particleFlowTmp_electrons_*', + 'keep recoPFCandidates_particleFlowTmp_*_*', + 'drop recoPFCandidates_particleFlowTmp__*', + 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', + 'keep *_pfElectronTranslator_*_*', + 'keep *_pfPhotonTranslator_*_*', + 'keep *_particleFlow_electrons_*', + 'keep *_particleFlow_photons_*', + 'keep *_particleFlow_muons_*', + 'keep *_trackerDrivenElectronSeeds_preid_*', + 'keep *_particleFlowPtrs_*_*', + 'keep *_particleFlowTmpPtrs_*_*', + 'keep *_chargedHadronPFTrackIsolation_*_*', + 'keep *_offlineBeamSpot_*_*', + 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', + 'keep *_l1GtRecord_*_*', + 'keep *_l1GtTriggerMenuLite_*_*', + 'keep *_conditionsInEdm_*_*', + 'keep *_l1extraParticles_*_*', + 'keep *_l1L1GtObjectMap_*_*', + 'keep L1MuGMTReadoutCollection_gtDigis_*_*', + 'keep L1GctEmCand*_gctDigis_*_*', + 'keep L1GctJetCand*_gctDigis_*_*', + 'keep L1GctEtHad*_gctDigis_*_*', + 'keep L1GctEtMiss*_gctDigis_*_*', + 'keep L1GctEtTotal*_gctDigis_*_*', + 'keep L1GctHtMiss*_gctDigis_*_*', + 'keep L1GctJetCounts*_gctDigis_*_*', + 'keep L1GctHFRingEtSums*_gctDigis_*_*', + 'keep L1GctHFBitCounts*_gctDigis_*_*', + 'keep LumiDetails_lumiProducer_*_*', + 'keep LumiSummary_lumiProducer_*_*', + 'keep *_gtStage2Digis_*_*', + 'keep *_gmtStage2Digis_*_*', + 'keep *_caloStage2Digis_*_*', + 'drop *_hlt*_*_*', + 'keep GlobalObjectMapRecord_hltGtStage2ObjectMap_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep triggerTriggerEvent_*_*_*', + 'keep *_hltFEDSelectorL1_*_*', + 'keep *_hltScoutingCaloPacker_*_*', + 'keep *_hltScoutingEgammaPacker_*_*', + 'keep *_hltScoutingMuonPackerCalo_*_*', + 'keep *_hltScoutingMuonPacker_*_*', + 'keep *_hltScoutingPFPacker_*_*', + 'keep *_hltScoutingPrimaryVertexPackerCaloMuon_*_*', + 'keep *_hltScoutingPrimaryVertexPacker_*_*', + 'keep *_hltScoutingTrackPacker_*_*', + 'keep edmTriggerResults_*_*_*', + 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', + 'keep L1TriggerScalerss_scalersRawToDigi_*_*', + 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', + 'keep LumiScalerss_scalersRawToDigi_*_*', + 'keep BeamSpotOnlines_scalersRawToDigi_*_*', + 'keep DcsStatuss_scalersRawToDigi_*_*', + 'keep DcsStatuss_hltScalersRawToDigi_*_*', + 'keep CTPPSRecord_onlineMetaDataDigis_*_*', + 'keep DCSRecord_onlineMetaDataDigis_*_*', + 'keep OnlineLuminosityRecord_onlineMetaDataDigis_*_*', + 'keep recoBeamSpot_onlineMetaDataDigis_*_*', + 'keep *_tcdsDigis_*_*', + 'keep *_logErrorHarvester_*_*', + 'keep *_pfIsolatedElectronsEI_*_*', + 'keep *_pfIsolatedMuonsEI_*_*', + 'keep recoPFJets_pfJetsEI_*_*', + 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', + 'keep recoPFTaus_pfTausEI_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', + 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', + 'keep recoPFMETs_pfMetEI_*_*', + 'keep TotemTriggerCounters_totemTriggerRawToDigi_*_*', + 'keep TotemFEDInfos_totemRPRawToDigi_*_*', + 'keep TotemRPDigiedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_totemRPRawToDigi_*_*', + 'keep TotemRPClusteredmDetSetVector_totemRPClusterProducer_*_*', + 'keep TotemRPRecHitedmDetSetVector_totemRPRecHitProducer_*_*', + 'keep TotemRPUVPatternedmDetSetVector_totemRPUVPatternFinder_*_*', + 'keep TotemRPLocalTrackedmDetSetVector_totemRPLocalTrackFitter_*_*', + 'keep TotemFEDInfos_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondDigiedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep TotemVFATStatusedmDetSetVector_ctppsDiamondRawToDigi_*_*', + 'keep CTPPSDiamondRecHitedmDetSetVector_ctppsDiamondRecHits_*_*', + 'keep CTPPSDiamondLocalTrackedmDetSetVector_ctppsDiamondLocalTracks_*_*', + 'keep TotemTimingDigiedmDetSetVector_totemTimingRawToDigi_*_*', + 'keep TotemTimingRecHitedmDetSetVector_totemTimingRecHits_*_*', + 'keep TotemTimingLocalTrackedmDetSetVector_totemTimingLocalTracks_*_*', + 'keep CTPPSPixelDigiedmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelDataErroredmDetSetVector_ctppsPixelDigis_*_*', + 'keep CTPPSPixelClusteredmDetSetVector_ctppsPixelClusters_*_*', + 'keep CTPPSPixelRecHitedmDetSetVector_ctppsPixelRecHits_*_*', + 'keep CTPPSPixelLocalTrackedmDetSetVector_ctppsPixelLocalTracks_*_*', + 'keep CTPPSLocalTrackLites_ctppsLocalTrackLiteProducer_*_*', + 'keep recoForwardProtons_ctppsProtons_*_*', + 'drop *_MEtoEDMConverter_*_*', + 'drop *_*_*_SKIM' + ) ) +) +process.SKIMStreamLogErrorMonitor = cms.OutputModule("PoolOutputModule", + SelectEvents = cms.untracked.PSet( + SelectEvents = cms.vstring('pathlogerrormonitor') + ), + dataset = cms.untracked.PSet( + dataTier = cms.untracked.string('USER'), + filterName = cms.untracked.string('LogErrorMonitor') + ), + eventAutoFlushCompressedSize = cms.untracked.int32(5242880), + fileName = cms.untracked.string('LogErrorMonitor.root'), + outputCommands = cms.untracked.vstring( + 'drop *_*_*_*', + 'keep edmErrorSummaryEntrys_*_*_*' + ) +) + +# Other statements +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOTkAlMinBias_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOSiStripCalZeroBias_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOAlCaPCCZeroBiasFromRECO_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOLumiPixelsMinBias_noDrop.outputCommands) +process.ALCARECOEventContent.outputCommands.extend(process.OutALCARECOSiStripCalMinBias_noDrop.outputCommands) +from Configuration.AlCa.GlobalTag import GlobalTag +process.GlobalTag = GlobalTag(process.GlobalTag, '106X_dataRun2_v27', '') + +# Path and EndPath definitions +process.raw2digi_step = cms.Path(process.RawToDigi) +process.L1Reco_step = cms.Path(process.L1Reco) +process.reconstruction_step = cms.Path(process.reconstruction) +process.eventinterpretaion_step = cms.Path(process.EIsequence) +process.Flag_trackingFailureFilter = cms.Path(process.goodVertices+process.trackingFailureFilter) +process.Flag_goodVertices = cms.Path(process.primaryVertexFilter) +process.Flag_CSCTightHaloFilter = cms.Path(process.CSCTightHaloFilter) +process.Flag_trkPOGFilters = cms.Path(process.trkPOGFilters) +process.Flag_HcalStripHaloFilter = cms.Path(process.HcalStripHaloFilter) +process.Flag_trkPOG_logErrorTooManyClusters = cms.Path(~process.logErrorTooManyClusters) +process.Flag_EcalDeadCellTriggerPrimitiveFilter = cms.Path(process.EcalDeadCellTriggerPrimitiveFilter) +process.Flag_ecalLaserCorrFilter = cms.Path(process.ecalLaserCorrFilter) +process.Flag_globalSuperTightHalo2016Filter = cms.Path(process.globalSuperTightHalo2016Filter) +process.Flag_eeBadScFilter = cms.Path(process.eeBadScFilter) +process.Flag_METFilters = cms.Path(process.metFilters) +process.Flag_chargedHadronTrackResolutionFilter = cms.Path(process.chargedHadronTrackResolutionFilter) +process.Flag_globalTightHalo2016Filter = cms.Path(process.globalTightHalo2016Filter) +process.Flag_CSCTightHaloTrkMuUnvetoFilter = cms.Path(process.CSCTightHaloTrkMuUnvetoFilter) +process.Flag_HBHENoiseIsoFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseIsoFilter) +process.Flag_BadChargedCandidateSummer16Filter = cms.Path(process.BadChargedCandidateSummer16Filter) +process.Flag_hcalLaserEventFilter = cms.Path(process.hcalLaserEventFilter) +process.Flag_BadPFMuonFilter = cms.Path(process.BadPFMuonFilter) +process.Flag_ecalBadCalibFilter = cms.Path(process.ecalBadCalibFilter) +process.Flag_HBHENoiseFilter = cms.Path(process.HBHENoiseFilterResultProducer+process.HBHENoiseFilter) +process.Flag_trkPOG_toomanystripclus53X = cms.Path(~process.toomanystripclus53X) +process.Flag_EcalDeadCellBoundaryEnergyFilter = cms.Path(process.EcalDeadCellBoundaryEnergyFilter) +process.Flag_BadChargedCandidateFilter = cms.Path(process.BadChargedCandidateFilter) +process.Flag_trkPOG_manystripclus53X = cms.Path(~process.manystripclus53X) +process.Flag_BadPFMuonSummer16Filter = cms.Path(process.BadPFMuonSummer16Filter) +process.Flag_muonBadTrackFilter = cms.Path(process.muonBadTrackFilter) +process.Flag_CSCTightHalo2015Filter = cms.Path(process.CSCTightHalo2015Filter) +process.dqmoffline_step = cms.EndPath(process.DQMOfflineCommonSiStripZeroBias) +process.dqmoffline_1_step = cms.EndPath(process.DQMOfflineMuon) +process.dqmoffline_2_step = cms.EndPath(process.DQMOfflineHcal) +process.dqmoffline_3_step = cms.EndPath(process.DQMOfflineJetMET) +process.dqmoffline_4_step = cms.EndPath(process.DQMOfflineEcal) +process.dqmoffline_5_step = cms.EndPath(process.DQMOfflineEGamma) +process.dqmoffline_6_step = cms.EndPath(process.DQMOfflineL1TMuon) +process.dqmoffline_7_step = cms.EndPath(process.DQMOfflineL1TEgamma) +process.dqmoffline_8_step = cms.EndPath(process.DQMOfflineCTPPS) +process.dqmofflineOnPAT_step = cms.EndPath(process.PostDQMOffline) +process.AODoutput_step = cms.EndPath(process.AODoutput) +process.MINIAODoutput_step = cms.EndPath(process.MINIAODoutput) +process.DQMoutput_step = cms.EndPath(process.DQMoutput) +process.ALCARECOStreamAlCaPCCZeroBiasFromRECOOutPath = cms.EndPath(process.ALCARECOStreamAlCaPCCZeroBiasFromRECO) +process.ALCARECOStreamLumiPixelsMinBiasOutPath = cms.EndPath(process.ALCARECOStreamLumiPixelsMinBias) +process.ALCARECOStreamSiStripCalMinBiasOutPath = cms.EndPath(process.ALCARECOStreamSiStripCalMinBias) +process.ALCARECOStreamSiStripCalZeroBiasOutPath = cms.EndPath(process.ALCARECOStreamSiStripCalZeroBias) +process.ALCARECOStreamTkAlMinBiasOutPath = cms.EndPath(process.ALCARECOStreamTkAlMinBias) +process.SKIMStreamLogErrorOutPath = cms.EndPath(process.SKIMStreamLogError) +process.SKIMStreamLogErrorMonitorOutPath = cms.EndPath(process.SKIMStreamLogErrorMonitor) + +# Schedule definition +process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.pathlogerror,process.pathlogerrormonitor,process.pathALCARECOTkAlMinBias,process.pathALCARECOSiStripCalZeroBias,process.pathALCARECOAlCaPCCZeroBiasFromRECO,process.pathALCARECOLumiPixelsMinBias,process.pathALCARECOSiStripCalMinBias,process.eventinterpretaion_step,process.Flag_HBHENoiseFilter,process.Flag_HBHENoiseIsoFilter,process.Flag_CSCTightHaloFilter,process.Flag_CSCTightHaloTrkMuUnvetoFilter,process.Flag_CSCTightHalo2015Filter,process.Flag_globalTightHalo2016Filter,process.Flag_globalSuperTightHalo2016Filter,process.Flag_HcalStripHaloFilter,process.Flag_hcalLaserEventFilter,process.Flag_EcalDeadCellTriggerPrimitiveFilter,process.Flag_EcalDeadCellBoundaryEnergyFilter,process.Flag_ecalBadCalibFilter,process.Flag_goodVertices,process.Flag_eeBadScFilter,process.Flag_ecalLaserCorrFilter,process.Flag_trkPOGFilters,process.Flag_chargedHadronTrackResolutionFilter,process.Flag_muonBadTrackFilter,process.Flag_BadChargedCandidateFilter,process.Flag_BadPFMuonFilter,process.Flag_BadChargedCandidateSummer16Filter,process.Flag_BadPFMuonSummer16Filter,process.Flag_trkPOG_manystripclus53X,process.Flag_trkPOG_toomanystripclus53X,process.Flag_trkPOG_logErrorTooManyClusters,process.Flag_METFilters,process.dqmoffline_step,process.dqmoffline_1_step,process.dqmoffline_2_step,process.dqmoffline_3_step,process.dqmoffline_4_step,process.dqmoffline_5_step,process.dqmoffline_6_step,process.dqmoffline_7_step,process.dqmoffline_8_step,process.dqmofflineOnPAT_step,process.AODoutput_step,process.MINIAODoutput_step,process.DQMoutput_step,process.ALCARECOStreamAlCaPCCZeroBiasFromRECOOutPath,process.ALCARECOStreamLumiPixelsMinBiasOutPath,process.ALCARECOStreamSiStripCalMinBiasOutPath,process.ALCARECOStreamSiStripCalZeroBiasOutPath,process.ALCARECOStreamTkAlMinBiasOutPath,process.SKIMStreamLogErrorOutPath,process.SKIMStreamLogErrorMonitorOutPath) +process.schedule.associate(process.patTask) +from PhysicsTools.PatAlgos.tools.helpers import associatePatAlgosToolsTask +associatePatAlgosToolsTask(process) + +#Setup FWK for multithreaded +process.options.numberOfThreads=cms.untracked.uint32(8) +process.options.numberOfStreams=cms.untracked.uint32(0) +process.options.numberOfConcurrentLuminosityBlocks=cms.untracked.uint32(1) + +# customisation of the process. + +# Automatic addition of the customisation function from Configuration.DataProcessing.RecoTLR +from Configuration.DataProcessing.RecoTLR import customisePostEra_Run2_2016 + +#call to customisation function customisePostEra_Run2_2016 imported from Configuration.DataProcessing.RecoTLR +process = customisePostEra_Run2_2016(process) + +# Automatic addition of the customisation function from Configuration.DataProcessing.Utils +from Configuration.DataProcessing.Utils import addMonitoring + +#call to customisation function addMonitoring imported from Configuration.DataProcessing.Utils +process = addMonitoring(process) + +# End of customisation functions +#do not add changes to your config after this point (unless you know what you are doing) +from FWCore.ParameterSet.Utilities import convertToUnscheduled +process=convertToUnscheduled(process) + +# customisation of the process. + +# Automatic addition of the customisation function from PhysicsTools.PatAlgos.slimming.miniAOD_tools +from PhysicsTools.PatAlgos.slimming.miniAOD_tools import miniAOD_customizeAllData + +#call to customisation function miniAOD_customizeAllData imported from PhysicsTools.PatAlgos.slimming.miniAOD_tools +process = miniAOD_customizeAllData(process) + +# End of customisation functions + +# Customisation from command line + +#Have logErrorHarvester wait for the same EDProducers to finish as those providing data for the OutputModule +from FWCore.Modules.logErrorHarvester_cff import customiseLogErrorHarvesterUsingOutputCommands +process = customiseLogErrorHarvesterUsingOutputCommands(process) + +# Add early deletion of temporary data products to reduce peak memory need +from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete +process = customiseEarlyDelete(process) +# End adding early deletion